aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to 'include/net')
-rw-r--r--include/net/inet_frag.h8
-rw-r--r--include/net/ip.h6
-rw-r--r--include/net/ipv6.h6
-rw-r--r--include/net/netfilter/ipv6/nf_conntrack_ipv6.h5
4 files changed, 14 insertions, 11 deletions
diff --git a/include/net/inet_frag.h b/include/net/inet_frag.h
index d51f23873da9..ada03ba3b341 100644
--- a/include/net/inet_frag.h
+++ b/include/net/inet_frag.h
@@ -20,6 +20,13 @@ struct inet_frag_queue {
20 20
21#define INETFRAGS_HASHSZ 64 21#define INETFRAGS_HASHSZ 64
22 22
23struct inet_frags_ctl {
24 int high_thresh;
25 int low_thresh;
26 int timeout;
27 int secret_interval;
28};
29
23struct inet_frags { 30struct inet_frags {
24 struct list_head lru_list; 31 struct list_head lru_list;
25 struct hlist_head hash[INETFRAGS_HASHSZ]; 32 struct hlist_head hash[INETFRAGS_HASHSZ];
@@ -28,6 +35,7 @@ struct inet_frags {
28 int nqueues; 35 int nqueues;
29 atomic_t mem; 36 atomic_t mem;
30 struct timer_list secret_timer; 37 struct timer_list secret_timer;
38 struct inet_frags_ctl *ctl;
31}; 39};
32 40
33void inet_frags_init(struct inet_frags *); 41void inet_frags_init(struct inet_frags *);
diff --git a/include/net/ip.h b/include/net/ip.h
index c08c59e2384c..e6aa955e241c 100644
--- a/include/net/ip.h
+++ b/include/net/ip.h
@@ -177,10 +177,8 @@ extern int sysctl_ip_default_ttl;
177extern int sysctl_ip_nonlocal_bind; 177extern int sysctl_ip_nonlocal_bind;
178 178
179/* From ip_fragment.c */ 179/* From ip_fragment.c */
180extern int sysctl_ipfrag_high_thresh; 180struct inet_frags_ctl;
181extern int sysctl_ipfrag_low_thresh; 181extern struct inet_frags_ctl ip4_frags_ctl;
182extern int sysctl_ipfrag_time;
183extern int sysctl_ipfrag_secret_interval;
184extern int sysctl_ipfrag_max_dist; 182extern int sysctl_ipfrag_max_dist;
185 183
186/* From inetpeer.c */ 184/* From inetpeer.c */
diff --git a/include/net/ipv6.h b/include/net/ipv6.h
index 77cdab3ce160..b29d76c715d2 100644
--- a/include/net/ipv6.h
+++ b/include/net/ipv6.h
@@ -565,10 +565,8 @@ extern int inet6_hash_connect(struct inet_timewait_death_row *death_row,
565/* 565/*
566 * reassembly.c 566 * reassembly.c
567 */ 567 */
568extern int sysctl_ip6frag_high_thresh; 568struct inet_frags_ctl;
569extern int sysctl_ip6frag_low_thresh; 569extern struct inet_frags_ctl ip6_frags_ctl;
570extern int sysctl_ip6frag_time;
571extern int sysctl_ip6frag_secret_interval;
572 570
573extern const struct proto_ops inet6_stream_ops; 571extern const struct proto_ops inet6_stream_ops;
574extern const struct proto_ops inet6_dgram_ops; 572extern const struct proto_ops inet6_dgram_ops;
diff --git a/include/net/netfilter/ipv6/nf_conntrack_ipv6.h b/include/net/netfilter/ipv6/nf_conntrack_ipv6.h
index 070d12cb4634..f703533fb4db 100644
--- a/include/net/netfilter/ipv6/nf_conntrack_ipv6.h
+++ b/include/net/netfilter/ipv6/nf_conntrack_ipv6.h
@@ -15,8 +15,7 @@ extern void nf_ct_frag6_output(unsigned int hooknum, struct sk_buff *skb,
15 struct net_device *out, 15 struct net_device *out,
16 int (*okfn)(struct sk_buff *)); 16 int (*okfn)(struct sk_buff *));
17 17
18extern unsigned int nf_ct_frag6_timeout; 18struct inet_frags_ctl;
19extern unsigned int nf_ct_frag6_low_thresh; 19extern struct inet_frags_ctl nf_frags_ctl;
20extern unsigned int nf_ct_frag6_high_thresh;
21 20
22#endif /* _NF_CONNTRACK_IPV6_H*/ 21#endif /* _NF_CONNTRACK_IPV6_H*/