kvargs: fix comments style
[dpdk.git] / examples / l3fwd / l3fwd_route.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2021 Intel Corporation
3  */
4
5 struct ipv4_l3fwd_route {
6         uint32_t ip;
7         uint8_t  depth;
8         uint8_t  if_out;
9 };
10
11 struct ipv6_l3fwd_route {
12         uint8_t ip[16];
13         uint8_t depth;
14         uint8_t if_out;
15 };
16
17 extern const struct ipv4_l3fwd_route ipv4_l3fwd_route_array[8];
18
19 extern const struct ipv6_l3fwd_route ipv6_l3fwd_route_array[8];