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: /* IP tables module for matching the value of the TTL 02: * (C) 2000 by Harald Welte <laforge@gnumonks.org> */ 03: 04: #ifndef _IPT_TTL_H 05: #define _IPT_TTL_H 06: 07: #include <linux/types.h> 08: 09: enum { 10: IPT_TTL_EQ = 0, /* equals */ 11: IPT_TTL_NE, /* not equals */ 12: IPT_TTL_LT, /* less than */ 13: IPT_TTL_GT, /* greater than */ 14: }; 15: 16: 17: struct ipt_ttl_info { 18: __u8 mode; 19: __u8 ttl; 20: }; 21: 22: 23: #endif 24: