1 #ifndef _XT_CONNBYTES_H
2 #define _XT_CONNBYTES_H
4 #include <linux/types.h>
6 enum xt_connbytes_what {
12 enum xt_connbytes_direction {
13 XT_CONNBYTES_DIR_ORIGINAL,
14 XT_CONNBYTES_DIR_REPLY,
15 XT_CONNBYTES_DIR_BOTH,
18 struct xt_connbytes_info
21 aligned_u64 from; /* count to be matched */
22 aligned_u64 to; /* count to be matched */
24 __u8 what; /* ipt_connbytes_what */
25 __u8 direction; /* ipt_connbytes_direction */