xt_CHECKSUM.h revision 0bcda81f5f6d121084131fb944e2940f614cc98c
1/* Header file for iptables ipt_CHECKSUM target
2 *
3 * (C) 2002 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2010 Red Hat Inc
5 * Author: Michael S. Tsirkin <mst@redhat.com>
6 *
7 * This software is distributed under GNU GPL v2, 1991
8*/
9#ifndef _IPT_CHECKSUM_TARGET_H
10#define _IPT_CHECKSUM_TARGET_H
11
12#define XT_CHECKSUM_OP_FILL	0x01	/* fill in checksum in IP header */
13
14struct xt_CHECKSUM_info {
15	__u8 operation;	/* bitset of operations */
16};
17
18#endif /* _IPT_CHECKSUM_TARGET_H */
19