netfilter: netns nf_conntrack: per-netns conntrack hash
[linux-2.6] / include / net / netns / conntrack.h
1 #ifndef __NETNS_CONNTRACK_H
2 #define __NETNS_CONNTRACK_H
3
4 #include <asm/atomic.h>
5
6 struct netns_ct {
7         atomic_t                count;
8         struct hlist_head       *hash;
9         int                     hash_vmalloc;
10 };
11 #endif