aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/netns/ipv6.h
blob: 58fbf30d9fdbf709736eb71c87de05117b9c710e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * ipv6 in net namespaces
 */

#ifndef __NETNS_IPV6_H__
#define __NETNS_IPV6_H__

struct ctl_table_header;

struct netns_sysctl_ipv6 {
#ifdef CONFIG_SYSCTL
	struct ctl_table_header *table;
#endif
};

struct netns_ipv6 {
	struct netns_sysctl_ipv6 sysctl;
};
#endif