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: /* Header file for iptables ipt_CHECKSUM target 02: * 03: * (C) 2002 by Harald Welte <laforge@gnumonks.org> 04: * (C) 2010 Red Hat Inc 05: * Author: Michael S. Tsirkin <mst@redhat.com> 06: * 07: * This software is distributed under GNU GPL v2, 1991 08: */ 09: #ifndef _XT_CHECKSUM_TARGET_H 10: #define _XT_CHECKSUM_TARGET_H 11: 12: #include <linux/types.h> 13: 14: #define XT_CHECKSUM_OP_FILL 0x01 /* fill in checksum in IP header */ 15: 16: struct xt_CHECKSUM_info { 17: __u8 operation; /* bitset of operations */ 18: }; 19: 20: #endif /* _XT_CHECKSUM_TARGET_H */ 21: