diff options
Diffstat (limited to 'include/net/netns')
-rw-r--r-- | include/net/netns/conntrack.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/net/netns/conntrack.h b/include/net/netns/conntrack.h index 680d799ece8b..7bd14ab8ce1c 100644 --- a/include/net/netns/conntrack.h +++ b/include/net/netns/conntrack.h | |||
@@ -34,9 +34,21 @@ struct nf_tcp_net { | |||
34 | unsigned int tcp_max_retrans; | 34 | unsigned int tcp_max_retrans; |
35 | }; | 35 | }; |
36 | 36 | ||
37 | enum udp_conntrack { | ||
38 | UDP_CT_UNREPLIED, | ||
39 | UDP_CT_REPLIED, | ||
40 | UDP_CT_MAX | ||
41 | }; | ||
42 | |||
43 | struct nf_udp_net { | ||
44 | struct nf_proto_net pn; | ||
45 | unsigned int timeouts[UDP_CT_MAX]; | ||
46 | }; | ||
47 | |||
37 | struct nf_ip_net { | 48 | struct nf_ip_net { |
38 | struct nf_generic_net generic; | 49 | struct nf_generic_net generic; |
39 | struct nf_tcp_net tcp; | 50 | struct nf_tcp_net tcp; |
51 | struct nf_udp_net udp; | ||
40 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT) | 52 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT) |
41 | struct ctl_table_header *ctl_table_header; | 53 | struct ctl_table_header *ctl_table_header; |
42 | struct ctl_table *ctl_table; | 54 | struct ctl_table *ctl_table; |