aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv4/ipt_connbytes.h
blob: 9e5532f8d8ac8c3595d33089e08dc6d18438a393 (plain) (blame)
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
#ifndef _IPT_CONNBYTES_H
#define _IPT_CONNBYTES_H

enum ipt_connbytes_what {
	IPT_CONNBYTES_PKTS,
	IPT_CONNBYTES_BYTES,
	IPT_CONNBYTES_AVGPKT,
};

enum ipt_connbytes_direction {
	IPT_CONNBYTES_DIR_ORIGINAL,
	IPT_CONNBYTES_DIR_REPLY,
	IPT_CONNBYTES_DIR_BOTH,
};

struct ipt_connbytes_info
{
	struct {
		aligned_u64 from;	/* count to be matched */
		aligned_u64 to;		/* count to be matched */
	} count;
	u_int8_t what;		/* ipt_connbytes_what */
	u_int8_t direction;	/* ipt_connbytes_direction */
};
#endif