blob: 42b9b412fb87165fe719a60eb21ba553d4afaed1 [file] [log] [blame]
Daniel Lezcanob0f159d2008-01-10 02:49:06 -08001/*
2 * ipv6 in net namespaces
3 */
4
5#ifndef __NETNS_IPV6_H__
6#define __NETNS_IPV6_H__
7
Daniel Lezcano760f2d02008-01-10 02:53:43 -08008struct ctl_table_header;
9
10struct netns_sysctl_ipv6 {
11#ifdef CONFIG_SYSCTL
12 struct ctl_table_header *table;
13#endif
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080014 int bindv6only;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080015};
16
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080017struct netns_ipv6 {
Daniel Lezcano760f2d02008-01-10 02:53:43 -080018 struct netns_sysctl_ipv6 sysctl;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080019};
20#endif