blob: 58fbf30d9fdbf709736eb71c87de05117b9c710e [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
14};
15
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080016struct netns_ipv6 {
Daniel Lezcano760f2d02008-01-10 02:53:43 -080017 struct netns_sysctl_ipv6 sysctl;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080018};
19#endif