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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#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 {
unsigned int flags;
int (*init)(void);
void (*close)(void);
struct {
void *data;
void (*new)(struct nf_conntrack *ct, int origin_type);
void (*upd)(struct nf_conntrack *ct, int origin_type);
int (*del)(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);
} ct;
struct {
void *data;
void (*new)(struct nf_expect *exp, int origin_type);
void (*upd)(struct nf_expect *exp, int origin_type);
int (*del)(struct nf_expect *exp, int origin_type);
void (*dump)(int fd, int type);
void (*populate)(struct nf_expect *exp);
void (*purge)(void);
int (*resync)(enum nf_conntrack_msg_type type,
struct nf_expect *exp, void *data);
void (*flush)(void);
void (*stats)(int fd);
void (*stats_ext)(int fd);
} exp;
};
extern struct internal_handler internal_cache;
extern struct internal_handler internal_bypass;
#endif
|