blob: a91b6abc8079e37a56d5713af4a9fc5cedce8c38 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _IP6T_ESP_H
2#define _IP6T_ESP_H
3
4struct ip6t_esp
5{
6 u_int32_t spis[2]; /* Security Parameter Index */
7 u_int8_t invflags; /* Inverse flags */
8};
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010/* Values for "invflags" field in struct ip6t_esp. */
11#define IP6T_ESP_INV_SPI 0x01 /* Invert the sense of spi. */
12#define IP6T_ESP_INV_MASK 0x01 /* All possible flags. */
13
14#endif /*_IP6T_ESP_H*/