1
2 #ifndef _IP6T_RT_H
3 #define _IP6T_RT_H
4
5 #include <linux/types.h>
6 #include <linux/in6.h>
7
8 #define IP6T_RT_HOPS 16
9
10 struct ip6t_rt {
11 __u32 rt_type;
12 __u32 segsleft[2];
13 __u32 hdrlen;
14 __u8 flags;
15 __u8 invflags;
16 struct in6_addr addrs[IP6T_RT_HOPS];
17 __u8 addrnr;
18 };
19
20 #define IP6T_RT_TYP 0x01
21 #define IP6T_RT_SGS 0x02
22 #define IP6T_RT_LEN 0x04
23 #define IP6T_RT_RES 0x08
24 #define IP6T_RT_FST_MASK 0x30
25 #define IP6T_RT_FST 0x10
26 #define IP6T_RT_FST_NSTRICT 0x20
27
28
29 #define IP6T_RT_INV_TYP 0x01
30 #define IP6T_RT_INV_SGS 0x02
31 #define IP6T_RT_INV_LEN 0x04
32 #define IP6T_RT_INV_MASK 0x07
33
34 #endif