Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 989a7241df87526bfef0396567e71ebe53a84ae4 40 lines 795 B view raw
1/* 2 * ipv6 in net namespaces 3 */ 4 5#include <net/inet_frag.h> 6 7#ifndef __NETNS_IPV6_H__ 8#define __NETNS_IPV6_H__ 9 10struct ctl_table_header; 11 12struct netns_sysctl_ipv6 { 13#ifdef CONFIG_SYSCTL 14 struct ctl_table_header *table; 15 struct ctl_table_header *frags_hdr; 16#endif 17 int bindv6only; 18 int flush_delay; 19 int ip6_rt_max_size; 20 int ip6_rt_gc_min_interval; 21 int ip6_rt_gc_timeout; 22 int ip6_rt_gc_interval; 23 int ip6_rt_gc_elasticity; 24 int ip6_rt_mtu_expires; 25 int ip6_rt_min_advmss; 26 int icmpv6_time; 27}; 28 29struct netns_ipv6 { 30 struct netns_sysctl_ipv6 sysctl; 31 struct ipv6_devconf *devconf_all; 32 struct ipv6_devconf *devconf_dflt; 33 struct netns_frags frags; 34#ifdef CONFIG_NETFILTER 35 struct xt_table *ip6table_filter; 36 struct xt_table *ip6table_mangle; 37 struct xt_table *ip6table_raw; 38#endif 39}; 40#endif