e453a33f3e93501fce1b1067791d2fb107c685f6
[deliverable/linux.git] / 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 unsigned int expect_count;
9 struct hlist_head *hash;
10 struct hlist_head *expect_hash;
11 int hash_vmalloc;
12 int expect_vmalloc;
13 };
14 #endif
This page took 0.029936 seconds and 4 git commands to generate.