summaryrefslogtreecommitdiffstats
path: root/include/myct.h
blob: 02d695c6f43bda6587d837c84d0e3720cdee8302 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef _MYCT_H_
#define _MYCT_H_

#include "linux_list.h"

#include <libnetfilter_conntrack/libnetfilter_conntrack.h>

struct nf_conntrack;

enum {
	MYCT_NONE		= 0,
	MYCT_ESTABLISHED	= (1 << 0),
};

enum {
	MYCT_DIR_ORIG = 0,
	MYCT_DIR_REPL,
	MYCT_DIR_MAX,
};

union myct_proto {
	uint16_t port;
	uint16_t all;
};

struct myct_man {
	union nfct_attr_grp_addr u3;
	union myct_proto	u;
	uint16_t		l3num;
	uint8_t			protonum;
};

struct myct_tuple {
	struct myct_man		src;
	struct myct_man		dst;
};

struct myct {
	struct nf_conntrack *ct;
	struct nf_expect *exp;
	void *priv_data;
};

#endif