[NETNS][IPV6]: Make ip6_frags per namespace.
[firewire-audio.git] / include / net / netns / ipv6.h
blobea4a71ac23d49edcb0490f350da3f3d7090e2a47
1 /*
2 * ipv6 in net namespaces
3 */
5 #include <net/inet_frag.h>
7 #ifndef __NETNS_IPV6_H__
8 #define __NETNS_IPV6_H__
10 struct ctl_table_header;
12 struct netns_sysctl_ipv6 {
13 #ifdef CONFIG_SYSCTL
14 struct ctl_table_header *table;
15 #endif
16 struct inet_frags_ctl frags;
17 int bindv6only;
20 struct netns_ipv6 {
21 struct netns_sysctl_ipv6 sysctl;
23 #endif