1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 #ifndef _UAPI_LINUX_IN6_H
23 #define _UAPI_LINUX_IN6_H
24
25 #include <linux/types.h>
26 #include <linux/libc-compat.h>
27
28
29
30
31
32 #if __UAPI_DEF_IN6_ADDR
33 struct in6_addr {
34 union {
35 __u8 u6_addr8[16];
36 #if __UAPI_DEF_IN6_ADDR_ALT
37 __be16 u6_addr16[8];
38 __be32 u6_addr32[4];
39 #endif
40 } in6_u;
41 #define s6_addr in6_u.u6_addr8
42 #if __UAPI_DEF_IN6_ADDR_ALT
43 #define s6_addr16 in6_u.u6_addr16
44 #define s6_addr32 in6_u.u6_addr32
45 #endif
46 };
47 #endif
48
49 #if __UAPI_DEF_SOCKADDR_IN6
50 struct sockaddr_in6 {
51 unsigned short int sin6_family;
52 __be16 sin6_port;
53 __be32 sin6_flowinfo;
54 struct in6_addr sin6_addr;
55 __u32 sin6_scope_id;
56 };
57 #endif
58
59 #if __UAPI_DEF_IPV6_MREQ
60 struct ipv6_mreq {
61
62 struct in6_addr ipv6mr_multiaddr;
63
64
65 int ipv6mr_ifindex;
66 };
67 #endif
68
69 #define ipv6mr_acaddr ipv6mr_multiaddr
70
71 struct in6_flowlabel_req {
72 struct in6_addr flr_dst;
73 __be32 flr_label;
74 __u8 flr_action;
75 __u8 flr_share;
76 __u16 flr_flags;
77 __u16 flr_expires;
78 __u16 flr_linger;
79 __u32 __flr_pad;
80
81 };
82
83 #define IPV6_FL_A_GET 0
84 #define IPV6_FL_A_PUT 1
85 #define IPV6_FL_A_RENEW 2
86
87 #define IPV6_FL_F_CREATE 1
88 #define IPV6_FL_F_EXCL 2
89 #define IPV6_FL_F_REFLECT 4
90 #define IPV6_FL_F_REMOTE 8
91
92 #define IPV6_FL_S_NONE 0
93 #define IPV6_FL_S_EXCL 1
94 #define IPV6_FL_S_PROCESS 2
95 #define IPV6_FL_S_USER 3
96 #define IPV6_FL_S_ANY 255
97
98
99
100
101
102
103
104
105
106
107 #define IPV6_FLOWINFO_FLOWLABEL 0x000fffff
108 #define IPV6_FLOWINFO_PRIORITY 0x0ff00000
109
110
111 #define IPV6_PRIORITY_UNCHARACTERIZED 0x0000
112 #define IPV6_PRIORITY_FILLER 0x0100
113 #define IPV6_PRIORITY_UNATTENDED 0x0200
114 #define IPV6_PRIORITY_RESERVED1 0x0300
115 #define IPV6_PRIORITY_BULK 0x0400
116 #define IPV6_PRIORITY_RESERVED2 0x0500
117 #define IPV6_PRIORITY_INTERACTIVE 0x0600
118 #define IPV6_PRIORITY_CONTROL 0x0700
119 #define IPV6_PRIORITY_8 0x0800
120 #define IPV6_PRIORITY_9 0x0900
121 #define IPV6_PRIORITY_10 0x0a00
122 #define IPV6_PRIORITY_11 0x0b00
123 #define IPV6_PRIORITY_12 0x0c00
124 #define IPV6_PRIORITY_13 0x0d00
125 #define IPV6_PRIORITY_14 0x0e00
126 #define IPV6_PRIORITY_15 0x0f00
127
128
129
130
131 #if __UAPI_DEF_IPPROTO_V6
132 #define IPPROTO_HOPOPTS 0
133 #define IPPROTO_ROUTING 43
134 #define IPPROTO_FRAGMENT 44
135 #define IPPROTO_ICMPV6 58
136 #define IPPROTO_NONE 59
137 #define IPPROTO_DSTOPTS 60
138 #define IPPROTO_MH 135
139 #endif
140
141
142
143
144 #define IPV6_TLV_PAD1 0
145 #define IPV6_TLV_PADN 1
146 #define IPV6_TLV_ROUTERALERT 5
147 #define IPV6_TLV_CALIPSO 7
148 #define IPV6_TLV_JUMBO 194
149 #define IPV6_TLV_HAO 201
150
151
152
153
154 #if __UAPI_DEF_IPV6_OPTIONS
155 #define IPV6_ADDRFORM 1
156 #define IPV6_2292PKTINFO 2
157 #define IPV6_2292HOPOPTS 3
158 #define IPV6_2292DSTOPTS 4
159 #define IPV6_2292RTHDR 5
160 #define IPV6_2292PKTOPTIONS 6
161 #define IPV6_CHECKSUM 7
162 #define IPV6_2292HOPLIMIT 8
163 #define IPV6_NEXTHOP 9
164 #define IPV6_AUTHHDR 10
165 #define IPV6_FLOWINFO 11
166
167 #define IPV6_UNICAST_HOPS 16
168 #define IPV6_MULTICAST_IF 17
169 #define IPV6_MULTICAST_HOPS 18
170 #define IPV6_MULTICAST_LOOP 19
171 #define IPV6_ADD_MEMBERSHIP 20
172 #define IPV6_DROP_MEMBERSHIP 21
173 #define IPV6_ROUTER_ALERT 22
174 #define IPV6_MTU_DISCOVER 23
175 #define IPV6_MTU 24
176 #define IPV6_RECVERR 25
177 #define IPV6_V6ONLY 26
178 #define IPV6_JOIN_ANYCAST 27
179 #define IPV6_LEAVE_ANYCAST 28
180 #define IPV6_MULTICAST_ALL 29
181 #define IPV6_ROUTER_ALERT_ISOLATE 30
182
183
184 #define IPV6_PMTUDISC_DONT 0
185 #define IPV6_PMTUDISC_WANT 1
186 #define IPV6_PMTUDISC_DO 2
187 #define IPV6_PMTUDISC_PROBE 3
188
189
190
191 #define IPV6_PMTUDISC_INTERFACE 4
192
193
194
195 #define IPV6_PMTUDISC_OMIT 5
196
197
198 #define IPV6_FLOWLABEL_MGR 32
199 #define IPV6_FLOWINFO_SEND 33
200
201 #define IPV6_IPSEC_POLICY 34
202 #define IPV6_XFRM_POLICY 35
203 #define IPV6_HDRINCL 36
204 #endif
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225 #define IPV6_RECVPKTINFO 49
226 #define IPV6_PKTINFO 50
227 #define IPV6_RECVHOPLIMIT 51
228 #define IPV6_HOPLIMIT 52
229 #define IPV6_RECVHOPOPTS 53
230 #define IPV6_HOPOPTS 54
231 #define IPV6_RTHDRDSTOPTS 55
232 #define IPV6_RECVRTHDR 56
233 #define IPV6_RTHDR 57
234 #define IPV6_RECVDSTOPTS 58
235 #define IPV6_DSTOPTS 59
236 #define IPV6_RECVPATHMTU 60
237 #define IPV6_PATHMTU 61
238 #define IPV6_DONTFRAG 62
239 #if 0
240 #define IPV6_USE_MIN_MTU 63
241 #endif
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256 #define IPV6_RECVTCLASS 66
257 #define IPV6_TCLASS 67
258
259
260
261
262
263
264
265
266
267
268
269
270 #define IPV6_AUTOFLOWLABEL 70
271
272 #define IPV6_ADDR_PREFERENCES 72
273
274 #define IPV6_PREFER_SRC_TMP 0x0001
275 #define IPV6_PREFER_SRC_PUBLIC 0x0002
276 #define IPV6_PREFER_SRC_PUBTMP_DEFAULT 0x0100
277 #define IPV6_PREFER_SRC_COA 0x0004
278 #define IPV6_PREFER_SRC_HOME 0x0400
279 #define IPV6_PREFER_SRC_CGA 0x0008
280 #define IPV6_PREFER_SRC_NONCGA 0x0800
281
282
283 #define IPV6_MINHOPCOUNT 73
284
285 #define IPV6_ORIGDSTADDR 74
286 #define IPV6_RECVORIGDSTADDR IPV6_ORIGDSTADDR
287 #define IPV6_TRANSPARENT 75
288 #define IPV6_UNICAST_IF 76
289 #define IPV6_RECVFRAGSIZE 77
290 #define IPV6_FREEBIND 78
291
292
293
294
295
296
297
298
299
300 #endif