api: missing support for dumping of neighbours (VPP-333)
[vpp.git] / vnet / vnet / ip / ip6_neighbor.h
1 /*
2  *
3  * ip6_neighboor.h: ip6 neighbor structures
4  *
5  * Copyright (c) 2016 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #ifndef included_ip6_neighbor_h
20 #define included_ip6_neighbor_h
21
22 #include <vnet/fib/fib_types.h>
23
24 typedef struct {
25   ip6_address_t ip6_address;
26   u32 sw_if_index;
27   u32 pad;
28 } ip6_neighbor_key_t;
29
30 typedef struct {
31   ip6_neighbor_key_t key;
32   u8 link_layer_address[8];
33   u16 flags;
34 #define IP6_NEIGHBOR_FLAG_STATIC (1 << 0)
35 #define IP6_NEIGHBOR_FLAG_DYNAMIC  (2 << 0)
36   u64 cpu_time_last_updated;
37   fib_node_index_t fib_entry_index;
38 } ip6_neighbor_t;
39
40 ip6_neighbor_t * ip6_neighbors_entries (u32 sw_if_index);
41
42 #endif  /* included_ip6_neighbor_h */