ipv6.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 *table;
  12. struct ctl_table_header *frags_hdr;
  13. #endif
  14. int bindv6only;
  15. int flush_delay;
  16. int ip6_rt_max_size;
  17. int ip6_rt_gc_min_interval;
  18. int ip6_rt_gc_timeout;
  19. int ip6_rt_gc_interval;
  20. int ip6_rt_gc_elasticity;
  21. int ip6_rt_mtu_expires;
  22. int ip6_rt_min_advmss;
  23. int icmpv6_time;
  24. int fwmark_reflect;
  25. };
  26. struct netns_ipv6 {
  27. struct netns_sysctl_ipv6 sysctl;
  28. struct ipv6_devconf *devconf_all;
  29. struct ipv6_devconf *devconf_dflt;
  30. struct netns_frags frags;
  31. #ifdef CONFIG_NETFILTER
  32. struct xt_table *ip6table_filter;
  33. struct xt_table *ip6table_mangle;
  34. struct xt_table *ip6table_raw;
  35. #ifdef CONFIG_SECURITY
  36. struct xt_table *ip6table_security;
  37. #endif
  38. struct xt_table *ip6table_nat;
  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