1#ifndef _XT_IPCOMP_H
2#define _XT_IPCOMP_H
3
4#include <linux/types.h>
5
6struct xt_ipcomp {
7	__u32 spis[2];	/* Security Parameter Index */
8	__u8 invflags;	/* Inverse flags */
9	__u8 hdrres;	/* Test of the Reserved Filed */
10};
11
12/* Values for "invflags" field in struct xt_ipcomp. */
13#define XT_IPCOMP_INV_SPI	0x01	/* Invert the sense of spi. */
14#define XT_IPCOMP_INV_MASK	0x01	/* All possible flags. */
15
16#endif /*_XT_IPCOMP_H*/
17