blob: 4e02bb0119e3c131575118b6f0cf0d868f7de722 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _IPT_AH_H
2#define _IPT_AH_H
3
Jan Engelhardt06988b02011-01-20 17:50:17 +01004#include <linux/types.h>
5
Eric Dumazetd94d9fe2009-11-04 09:50:58 -08006struct ipt_ah {
Jan Engelhardt0260c1d2011-01-18 07:33:09 +01007 __u32 spis[2]; /* Security Parameter Index */
8 __u8 invflags; /* Inverse flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009};
10
11
12
13/* Values for "invflags" field in struct ipt_ah. */
14#define IPT_AH_INV_SPI 0x01 /* Invert the sense of spi. */
15#define IPT_AH_INV_MASK 0x01 /* All possible flags. */
16
17#endif /*_IPT_AH_H*/