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: /* TTL modification module for IP tables 02: * (C) 2000 by Harald Welte <laforge@netfilter.org> */ 03: 04: #ifndef _IPT_TTL_H 05: #define _IPT_TTL_H 06: 07: #include <linux/types.h> 08: 09: enum { 10: IPT_TTL_SET = 0, 11: IPT_TTL_INC, 12: IPT_TTL_DEC 13: }; 14: 15: #define IPT_TTL_MAXMODE IPT_TTL_DEC 16: 17: struct ipt_TTL_info { 18: __u8 mode; 19: __u8 ttl; 20: }; 21: 22: 23: #endif 24: