ip6t_frag.h
01: #ifndef _IP6T_FRAG_H
02: #define _IP6T_FRAG_H
03:
04: #include <linux/types.h>
05:
06: struct ip6t_frag {
07: __u32 ids[2];
08: __u32 hdrlen;
09: __u8 flags;
10: __u8 invflags;
11: };
12:
13: #define IP6T_FRAG_IDS 0x01
14: #define IP6T_FRAG_LEN 0x02
15: #define IP6T_FRAG_RES 0x04
16: #define IP6T_FRAG_FST 0x08
17: #define IP6T_FRAG_MF 0x10
18: #define IP6T_FRAG_NMF 0x20
19:
20:
21: #define IP6T_FRAG_INV_IDS 0x01
22: #define IP6T_FRAG_INV_LEN 0x02
23: #define IP6T_FRAG_INV_MASK 0x03
24:
25: #endif
26:
© Andrew Scott 2006 -
2025,
All Rights Reserved