]> err.no Git - linux-2.6/blob - include/net/netns/ipv6.h
[NETNS][IPV6]: Make bindv6only sysctl per namespace.
[linux-2.6] / include / net / netns / ipv6.h
1 /*
2  * ipv6 in net namespaces
3  */
4
5 #ifndef __NETNS_IPV6_H__
6 #define __NETNS_IPV6_H__
7
8 struct ctl_table_header;
9
10 struct netns_sysctl_ipv6 {
11 #ifdef CONFIG_SYSCTL
12         struct ctl_table_header *table;
13 #endif
14         int bindv6only;
15 };
16
17 struct netns_ipv6 {
18         struct netns_sysctl_ipv6 sysctl;
19 };
20 #endif