sysctl_net_ipv6.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * sysctl_net_ipv6.c: sysctl interface to net IPV6 subsystem.
  3.  */
  4. #include <linux/mm.h>
  5. #include <linux/sysctl.h>
  6. #include <linux/config.h>
  7. #include <linux/in6.h>
  8. #include <linux/ipv6.h>
  9. #include <net/ndisc.h>
  10. #include <net/ipv6.h>
  11. #include <net/addrconf.h>
  12. extern ctl_table ipv6_route_table[];
  13. #ifdef CONFIG_SYSCTL
  14. ctl_table ipv6_table[] = {
  15. {NET_IPV6_ROUTE, "route", NULL, 0, 0555, ipv6_route_table},
  16. {0}
  17. };
  18. #ifdef MODULE
  19. static struct ctl_table_header *ipv6_sysctl_header;
  20. static struct ctl_table ipv6_root_table[];
  21. static struct ctl_table ipv6_net_table[];
  22. ctl_table ipv6_root_table[] = {
  23. {CTL_NET, "net", NULL, 0, 0555, ipv6_net_table},
  24.         {0}
  25. };
  26. ctl_table ipv6_net_table[] = {
  27. {NET_IPV6, "ipv6", NULL, 0, 0555, ipv6_table},
  28.         {0}
  29. };
  30. void ipv6_sysctl_register(void)
  31. {
  32. ipv6_sysctl_header = register_sysctl_table(ipv6_root_table, 0);
  33. }
  34. void ipv6_sysctl_unregister(void)
  35. {
  36. unregister_sysctl_table(ipv6_sysctl_header);
  37. }
  38. #endif /* MODULE */
  39. #endif /* CONFIG_SYSCTL */