2008-10-08 17:35:02 +08:00
|
|
|
#ifndef __NETNS_CONNTRACK_H
|
|
|
|
#define __NETNS_CONNTRACK_H
|
|
|
|
|
2008-10-08 17:35:04 +08:00
|
|
|
#include <linux/list.h>
|
2008-10-08 17:35:03 +08:00
|
|
|
#include <asm/atomic.h>
|
|
|
|
|
2008-10-08 17:35:07 +08:00
|
|
|
struct nf_conntrack_ecache;
|
|
|
|
|
2008-10-08 17:35:02 +08:00
|
|
|
struct netns_ct {
|
2008-10-08 17:35:03 +08:00
|
|
|
atomic_t count;
|
2008-10-08 17:35:03 +08:00
|
|
|
unsigned int expect_count;
|
2008-10-08 17:35:03 +08:00
|
|
|
struct hlist_head *hash;
|
2008-10-08 17:35:03 +08:00
|
|
|
struct hlist_head *expect_hash;
|
2008-10-08 17:35:04 +08:00
|
|
|
struct hlist_head unconfirmed;
|
2008-10-08 17:35:07 +08:00
|
|
|
#ifdef CONFIG_NF_CONNTRACK_EVENTS
|
|
|
|
struct nf_conntrack_ecache *ecache;
|
|
|
|
#endif
|
2008-10-08 17:35:03 +08:00
|
|
|
int hash_vmalloc;
|
2008-10-08 17:35:03 +08:00
|
|
|
int expect_vmalloc;
|
2008-10-08 17:35:02 +08:00
|
|
|
};
|
|
|
|
#endif
|