ipv6.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * ipv6 in net namespaces
  3. */
  4. #include <net/inet_frag.h>
  5. #ifndef __NETNS_IPV6_H__
  6. #define __NETNS_IPV6_H__
  7. #include <net/dst_ops.h>
  8. struct ctl_table_header;
  9. struct netns_sysctl_ipv6 {
  10. #ifdef CONFIG_SYSCTL
  11. struct ctl_table_header *hdr;
  12. struct ctl_table_header *route_hdr;
  13. struct ctl_table_header *icmp_hdr;
  14. struct ctl_table_header *frags_hdr;
  15. #endif
  16. int bindv6only;
  17. int flush_delay;
  18. int ip6_rt_max_size;
  19. int ip6_rt_gc_min_interval;
  20. int ip6_rt_gc_timeout;
  21. int ip6_rt_gc_interval;
  22. int ip6_rt_gc_elasticity;
  23. int ip6_rt_mtu_expires;
  24. int ip6_rt_min_advmss;
  25. int icmpv6_time;
  26. };
  27. struct netns_ipv6 {
  28. struct netns_sysctl_ipv6 sysctl;
  29. struct ipv6_devconf *devconf_all;
  30. struct ipv6_devconf *devconf_dflt;
  31. struct netns_frags frags;
  32. #ifdef CONFIG_NETFILTER
  33. struct xt_table *ip6table_filter;
  34. struct xt_table *ip6table_mangle;
  35. struct xt_table *ip6table_raw;
  36. #ifdef CONFIG_SECURITY
  37. struct xt_table *ip6table_security;
  38. #endif
  39. #endif
  40. struct rt6_info *ip6_null_entry;
  41. struct rt6_statistics *rt6_stats;
  42. struct timer_list ip6_fib_timer;
  43. struct hlist_head *fib_table_hash;
  44. struct fib6_table *fib6_main_tbl;
  45. struct dst_ops ip6_dst_ops;
  46. unsigned int ip6_rt_gc_expire;
  47. unsigned long ip6_rt_last_gc;
  48. #ifdef CONFIG_IPV6_MULTIPLE_TABLES
  49. struct rt6_info *ip6_prohibit_entry;
  50. struct rt6_info *ip6_blk_hole_entry;
  51. struct fib6_table *fib6_local_tbl;
  52. struct fib_rules_ops *fib6_rules_ops;
  53. #endif
  54. struct sock **icmp_sk;
  55. struct sock *ndisc_sk;
  56. struct sock *tcp_sk;
  57. struct sock *igmp_sk;
  58. #ifdef CONFIG_IPV6_MROUTE
  59. #ifndef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES
  60. struct mr6_table *mrt6;
  61. #else
  62. struct list_head mr6_tables;
  63. struct fib_rules_ops *mr6_rules_ops;
  64. #endif
  65. #endif
  66. };
  67. #endif