June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: #ifndef _IPT_AH_H 02: #define _IPT_AH_H 03: 04: #include <linux/types.h> 05: 06: struct ipt_ah { 07: __u32 spis[2]; /* Security Parameter Index */ 08: __u8 invflags; /* Inverse flags */ 09: }; 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*/ 18: