1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef _IP6T_FRAG_H
13#define _IP6T_FRAG_H
14
15struct ip6t_frag
16{
17 u_int32_t ids[2];
18 u_int32_t hdrlen;
19 u_int8_t flags;
20 u_int8_t invflags;
21};
22
23#define IP6T_FRAG_IDS 0x01
24#define IP6T_FRAG_LEN 0x02
25#define IP6T_FRAG_RES 0x04
26#define IP6T_FRAG_FST 0x08
27#define IP6T_FRAG_MF 0x10
28#define IP6T_FRAG_NMF 0x20
29
30#define IP6T_FRAG_INV_IDS 0x01
31#define IP6T_FRAG_INV_LEN 0x02
32#define IP6T_FRAG_INV_MASK 0x03
33
34#endif
35