1#ifndef __LINUX_NEIGHBOUR_H
2#define __LINUX_NEIGHBOUR_H
3
4#include <linux/types.h>
5#include <linux/netlink.h>
6
7struct ndmsg {
8 __u8 ndm_family;
9 __u8 ndm_pad1;
10 __u16 ndm_pad2;
11 __s32 ndm_ifindex;
12 __u16 ndm_state;
13 __u8 ndm_flags;
14 __u8 ndm_type;
15};
16
17enum {
18 NDA_UNSPEC,
19 NDA_DST,
20 NDA_LLADDR,
21 NDA_CACHEINFO,
22 NDA_PROBES,
23 __NDA_MAX
24};
25
26#define NDA_MAX (__NDA_MAX - 1)
27
28
29
30
31
32#define NTF_USE 0x01
33#define NTF_PROXY 0x08
34#define NTF_ROUTER 0x80
35
36
37
38
39
40#define NUD_INCOMPLETE 0x01
41#define NUD_REACHABLE 0x02
42#define NUD_STALE 0x04
43#define NUD_DELAY 0x08
44#define NUD_PROBE 0x10
45#define NUD_FAILED 0x20
46
47
48#define NUD_NOARP 0x40
49#define NUD_PERMANENT 0x80
50#define NUD_NONE 0x00
51
52
53
54
55
56
57struct nda_cacheinfo {
58 __u32 ndm_confirmed;
59 __u32 ndm_used;
60 __u32 ndm_updated;
61 __u32 ndm_refcnt;
62};
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89struct ndt_stats {
90 __u64 ndts_allocs;
91 __u64 ndts_destroys;
92 __u64 ndts_hash_grows;
93 __u64 ndts_res_failed;
94 __u64 ndts_lookups;
95 __u64 ndts_hits;
96 __u64 ndts_rcv_probes_mcast;
97 __u64 ndts_rcv_probes_ucast;
98 __u64 ndts_periodic_gc_runs;
99 __u64 ndts_forced_gc_runs;
100};
101
102enum {
103 NDTPA_UNSPEC,
104 NDTPA_IFINDEX,
105 NDTPA_REFCNT,
106 NDTPA_REACHABLE_TIME,
107 NDTPA_BASE_REACHABLE_TIME,
108 NDTPA_RETRANS_TIME,
109 NDTPA_GC_STALETIME,
110 NDTPA_DELAY_PROBE_TIME,
111 NDTPA_QUEUE_LEN,
112 NDTPA_APP_PROBES,
113 NDTPA_UCAST_PROBES,
114 NDTPA_MCAST_PROBES,
115 NDTPA_ANYCAST_DELAY,
116 NDTPA_PROXY_DELAY,
117 NDTPA_PROXY_QLEN,
118 NDTPA_LOCKTIME,
119 NDTPA_QUEUE_LENBYTES,
120 __NDTPA_MAX
121};
122#define NDTPA_MAX (__NDTPA_MAX - 1)
123
124struct ndtmsg {
125 __u8 ndtm_family;
126 __u8 ndtm_pad1;
127 __u16 ndtm_pad2;
128};
129
130struct ndt_config {
131 __u16 ndtc_key_len;
132 __u16 ndtc_entry_size;
133 __u32 ndtc_entries;
134 __u32 ndtc_last_flush;
135 __u32 ndtc_last_rand;
136 __u32 ndtc_hash_rnd;
137 __u32 ndtc_hash_mask;
138 __u32 ndtc_hash_chain_gc;
139 __u32 ndtc_proxy_qlen;
140};
141
142enum {
143 NDTA_UNSPEC,
144 NDTA_NAME,
145 NDTA_THRESH1,
146 NDTA_THRESH2,
147 NDTA_THRESH3,
148 NDTA_CONFIG,
149 NDTA_PARMS,
150 NDTA_STATS,
151 NDTA_GC_INTERVAL,
152 __NDTA_MAX
153};
154#define NDTA_MAX (__NDTA_MAX - 1)
155
156#endif
157