aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to 'include/net')
-rw-r--r--include/net/netfilter/nf_conntrack_core.h1
-rw-r--r--include/net/netfilter/nf_conntrack_expect.h5
2 files changed, 5 insertions, 1 deletions
diff --git a/include/net/netfilter/nf_conntrack_core.h b/include/net/netfilter/nf_conntrack_core.h
index a18f79c80db8..4056f5f08da1 100644
--- a/include/net/netfilter/nf_conntrack_core.h
+++ b/include/net/netfilter/nf_conntrack_core.h
@@ -84,7 +84,6 @@ print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple,
84 struct nf_conntrack_l4proto *proto); 84 struct nf_conntrack_l4proto *proto);
85 85
86extern struct hlist_head *nf_conntrack_hash; 86extern struct hlist_head *nf_conntrack_hash;
87extern struct list_head nf_ct_expect_list;
88extern rwlock_t nf_conntrack_lock ; 87extern rwlock_t nf_conntrack_lock ;
89extern struct hlist_head unconfirmed; 88extern struct hlist_head unconfirmed;
90 89
diff --git a/include/net/netfilter/nf_conntrack_expect.h b/include/net/netfilter/nf_conntrack_expect.h
index cf6a619664e8..424d4bdb9848 100644
--- a/include/net/netfilter/nf_conntrack_expect.h
+++ b/include/net/netfilter/nf_conntrack_expect.h
@@ -7,12 +7,17 @@
7#include <net/netfilter/nf_conntrack.h> 7#include <net/netfilter/nf_conntrack.h>
8 8
9extern struct list_head nf_ct_expect_list; 9extern struct list_head nf_ct_expect_list;
10extern struct hlist_head *nf_ct_expect_hash;
11extern unsigned int nf_ct_expect_hsize;
10 12
11struct nf_conntrack_expect 13struct nf_conntrack_expect
12{ 14{
13 /* Internal linked list (global expectation list) */ 15 /* Internal linked list (global expectation list) */
14 struct list_head list; 16 struct list_head list;
15 17
18 /* Hash member */
19 struct hlist_node hnode;
20
16 /* We expect this tuple, with the following mask */ 21 /* We expect this tuple, with the following mask */
17 struct nf_conntrack_tuple tuple; 22 struct nf_conntrack_tuple tuple;
18 struct nf_conntrack_tuple_mask mask; 23 struct nf_conntrack_tuple_mask mask;