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 _XT_CT_H 02: #define _XT_CT_H 03: 04: #include <linux/types.h> 05: 06: #define XT_CT_NOTRACK 0x1 07: 08: struct xt_ct_target_info { 09: __u16 flags; 10: __u16 zone; 11: __u32 ct_events; 12: __u32 exp_events; 13: char helper[16]; 14: 15: /* Used internally by the kernel */ 16: struct nf_conn *ct __attribute__((aligned(8))); 17: }; 18: 19: #endif /* _XT_CT_H */ 20: