Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 1 | /* |
2 | * ipv6 in net namespaces | ||||
3 | */ | ||||
4 | |||||
Daniel Lezcano | e71e034 | 2008-01-10 02:56:03 -0800 | [diff] [blame^] | 5 | #include <net/inet_frag.h> |
6 | |||||
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 7 | #ifndef __NETNS_IPV6_H__ |
8 | #define __NETNS_IPV6_H__ | ||||
9 | |||||
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 10 | struct ctl_table_header; |
11 | |||||
12 | struct netns_sysctl_ipv6 { | ||||
13 | #ifdef CONFIG_SYSCTL | ||||
14 | struct ctl_table_header *table; | ||||
15 | #endif | ||||
Daniel Lezcano | e71e034 | 2008-01-10 02:56:03 -0800 | [diff] [blame^] | 16 | struct inet_frags_ctl frags; |
Daniel Lezcano | 99bc9c4 | 2008-01-10 02:54:53 -0800 | [diff] [blame] | 17 | int bindv6only; |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 18 | }; |
19 | |||||
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 20 | struct netns_ipv6 { |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 21 | struct netns_sysctl_ipv6 sysctl; |
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 22 | }; |
23 | #endif |