blob: ea4a71ac23d49edcb0490f350da3f3d7090e2a47 [file] [log] [blame]
Daniel Lezcanob0f159d2008-01-10 02:49:06 -08001/*
2 * ipv6 in net namespaces
3 */
4
Daniel Lezcanoe71e0342008-01-10 02:56:03 -08005#include <net/inet_frag.h>
6
Daniel Lezcanob0f159d2008-01-10 02:49:06 -08007#ifndef __NETNS_IPV6_H__
8#define __NETNS_IPV6_H__
9
Daniel Lezcano760f2d02008-01-10 02:53:43 -080010struct ctl_table_header;
11
12struct netns_sysctl_ipv6 {
13#ifdef CONFIG_SYSCTL
14 struct ctl_table_header *table;
15#endif
Daniel Lezcanoe71e0342008-01-10 02:56:03 -080016 struct inet_frags_ctl frags;
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080017 int bindv6only;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080018};
19
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080020struct netns_ipv6 {
Daniel Lezcano760f2d02008-01-10 02:53:43 -080021 struct netns_sysctl_ipv6 sysctl;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080022};
23#endif