]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/net/netns/ipv6.h
[NETNS][IPV6]: Make sysctls route per namespace.
[linux-2.6-omap-h63xx.git] / include / net / netns / ipv6.h
1 /*
2  * ipv6 in net namespaces
3  */
4
5 #include <net/inet_frag.h>
6
7 #ifndef __NETNS_IPV6_H__
8 #define __NETNS_IPV6_H__
9
10 struct ctl_table_header;
11
12 struct netns_sysctl_ipv6 {
13 #ifdef CONFIG_SYSCTL
14         struct ctl_table_header *table;
15 #endif
16         struct inet_frags_ctl frags;
17         int bindv6only;
18         int flush_delay;
19         int ip6_rt_max_size;
20         int ip6_rt_gc_min_interval;
21         int ip6_rt_gc_timeout;
22         int ip6_rt_gc_interval;
23         int ip6_rt_gc_elasticity;
24         int ip6_rt_mtu_expires;
25         int ip6_rt_min_advmss;
26 };
27
28 struct netns_ipv6 {
29         struct netns_sysctl_ipv6 sysctl;
30 };
31 #endif