Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 1 | /* |
| 2 | * ipv6 in net namespaces |
| 3 | */ |
| 4 | |
| 5 | #ifndef __NETNS_IPV6_H__ |
| 6 | #define __NETNS_IPV6_H__ |
| 7 | |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame^] | 8 | struct ctl_table_header; |
| 9 | |
| 10 | struct netns_sysctl_ipv6 { |
| 11 | #ifdef CONFIG_SYSCTL |
| 12 | struct ctl_table_header *table; |
| 13 | #endif |
| 14 | }; |
| 15 | |
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 16 | struct netns_ipv6 { |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame^] | 17 | struct netns_sysctl_ipv6 sysctl; |
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 18 | }; |
| 19 | #endif |