summaryrefslogtreecommitdiffstats
path: root/include/internal.h
blob: 1f11340dd87c321e7f2afd494b340f87c2a15ac6 (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
#ifndef _INTERNAL_H_
#define _INTERNAL_H_

#include <libnetfilter_conntrack/libnetfilter_conntrack.h>

struct nf_conntrack;

enum {
	INTERNAL_F_POPULATE	= (1 << 0),
	INTERNAL_F_RESYNC	= (1 << 1),
	INTERNAL_F_MAX		= (1 << 2)
};

struct internal_handler {
	void	*data;
	unsigned int flags;

	int	(*init)(void);
	void	(*close)(void);

	void	(*new)(struct nf_conntrack *ct, int origin_type);
	void	(*update)(struct nf_conntrack *ct, int origin_type);
	int	(*destroy)(struct nf_conntrack *ct, int origin_type);

	void	(*dump)(int fd, int type);
	void	(*populate)(struct nf_conntrack *ct);
	void	(*purge)(void);
	int	(*resync)(enum nf_conntrack_msg_type type,
			  struct nf_conntrack *ct, void *data);
	void	(*flush)(void);

	void	(*stats)(int fd);
	void	(*stats_ext)(int fd);
};

extern struct internal_handler internal_cache;
extern struct internal_handler internal_bypass;

#endif