sysctl_net.c (1da177e4c3f41524e886b7f1b8a0c1fc7321cac2) | sysctl_net.c (20380731bc2897f2952ae055420972ded4cd786e) |
---|---|
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 15#include <linux/config.h> 16#include <linux/mm.h> 17#include <linux/sysctl.h> 18 19#ifdef CONFIG_INET | 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 15#include <linux/config.h> 16#include <linux/mm.h> 17#include <linux/sysctl.h> 18 19#ifdef CONFIG_INET |
20extern struct ctl_table ipv4_table[]; | 20#include <net/ip.h> |
21#endif 22 | 21#endif 22 |
23extern struct ctl_table core_table[]; 24 | |
25#ifdef CONFIG_NET | 23#ifdef CONFIG_NET |
26extern struct ctl_table ether_table[]; | 24#include <linux/if_ether.h> |
27#endif 28 29#ifdef CONFIG_TR | 25#endif 26 27#ifdef CONFIG_TR |
30extern struct ctl_table tr_table[]; | 28#include <linux/if_tr.h> |
31#endif 32 33struct ctl_table net_table[] = { 34 { 35 .ctl_name = NET_CORE, 36 .procname = "core", 37 .mode = 0555, 38 .child = core_table, --- 27 unchanged lines hidden --- | 29#endif 30 31struct ctl_table net_table[] = { 32 { 33 .ctl_name = NET_CORE, 34 .procname = "core", 35 .mode = 0555, 36 .child = core_table, --- 27 unchanged lines hidden --- |