ip6t_opts.h
01: #ifndef _IP6T_OPTS_H
02: #define _IP6T_OPTS_H
03:
04: #include <linux/types.h>
05:
06: #define IP6T_OPTS_OPTSNR 16
07:
08: struct ip6t_opts {
09: __u32 hdrlen;
10: __u8 flags;
11: __u8 invflags;
12: __u16 opts[IP6T_OPTS_OPTSNR];
13: __u8 optsnr;
14: };
15:
16: #define IP6T_OPTS_LEN 0x01
17: #define IP6T_OPTS_OPTS 0x02
18: #define IP6T_OPTS_NSTRICT 0x04
19:
20:
21: #define IP6T_OPTS_INV_LEN 0x01
22: #define IP6T_OPTS_INV_MASK 0x01
23:
24: #endif
25:
© Andrew Scott 2006 -
2025,
All Rights Reserved