]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/net/netns/conntrack.h
fc0a46d64cc94080282d070204d834d0ef1a5c84
[linux-2.6-omap-h63xx.git] / include / net / netns / conntrack.h
1 #ifndef __NETNS_CONNTRACK_H
2 #define __NETNS_CONNTRACK_H
3
4 #include <linux/list.h>
5 #include <asm/atomic.h>
6
7 struct nf_conntrack_ecache;
8
9 struct netns_ct {
10         atomic_t                count;
11         unsigned int            expect_count;
12         struct hlist_head       *hash;
13         struct hlist_head       *expect_hash;
14         struct hlist_head       unconfirmed;
15         struct ip_conntrack_stat *stat;
16 #ifdef CONFIG_NF_CONNTRACK_EVENTS
17         struct nf_conntrack_ecache *ecache;
18 #endif
19         int                     hash_vmalloc;
20         int                     expect_vmalloc;
21 };
22 #endif