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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-c -*-
  2.  * sysctl_net.c: sysctl interface to net subsystem.
  3.  *
  4.  * Begun April 1, 1996, Mike Shaver.
  5.  * Added /proc/sys/net directories for each protocol family. [MS]
  6.  *
  7.  * $Log: sysctl_net.c,v $
  8.  * Revision 1.2  1996/05/08  20:24:40  shaver
  9.  * Added bits for NET_BRIDGE and the NET_IPV4_ARP stuff and
  10.  * NET_IPV4_IP_FORWARD.
  11.  *
  12.  *
  13.  */
  14. #include <linux/config.h>
  15. #include <linux/mm.h>
  16. #include <linux/sysctl.h>
  17. #ifdef CONFIG_INET
  18. extern ctl_table ipv4_table[];
  19. #endif
  20. extern ctl_table core_table[];
  21. #ifdef CONFIG_NET
  22. extern ctl_table ether_table[], e802_table[];
  23. #endif
  24. #ifdef CONFIG_IPV6
  25. extern ctl_table ipv6_table[];
  26. #endif
  27. #ifdef CONFIG_TR
  28. extern ctl_table tr_table[];
  29. #endif
  30. ctl_table net_table[] = {
  31. {NET_CORE,   "core",      NULL, 0, 0555, core_table},      
  32. #ifdef CONFIG_NET
  33. {NET_802,    "802",       NULL, 0, 0555, e802_table},
  34. {NET_ETHER,  "ethernet",  NULL, 0, 0555, ether_table},
  35. #endif
  36. #ifdef CONFIG_INET
  37. {NET_IPV4,   "ipv4",      NULL, 0, 0555, ipv4_table},
  38. #endif
  39. #ifdef CONFIG_IPV6
  40. {NET_IPV6, "ipv6", NULL, 0, 0555, ipv6_table},
  41. #endif
  42. #ifdef CONFIG_TR
  43. {NET_TR, "token-ring", NULL, 0, 0555, tr_table},
  44. #endif
  45. {0}
  46. };