ipv6.h 554 字节
Newer Older
1 2 3 4
/*
 * ipv6 in net namespaces
 */

5 6
#include <net/inet_frag.h>

7 8 9
#ifndef __NETNS_IPV6_H__
#define __NETNS_IPV6_H__

10 11 12 13 14 15
struct ctl_table_header;

struct netns_sysctl_ipv6 {
#ifdef CONFIG_SYSCTL
	struct ctl_table_header *table;
#endif
16
	struct inet_frags_ctl frags;
17
	int bindv6only;
18 19 20 21 22 23 24 25
	int flush_delay;
	int ip6_rt_max_size;
	int ip6_rt_gc_min_interval;
	int ip6_rt_gc_timeout;
	int ip6_rt_gc_interval;
	int ip6_rt_gc_elasticity;
	int ip6_rt_mtu_expires;
	int ip6_rt_min_advmss;
26
	int icmpv6_time;
27 28
};

29
struct netns_ipv6 {
30
	struct netns_sysctl_ipv6 sysctl;
31 32
};
#endif