aboutsummaryrefslogtreecommitdiffstats
path: root/net/sysctl_net.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /net/sysctl_net.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'net/sysctl_net.c')
-rw-r--r--net/sysctl_net.c65
1 files changed, 65 insertions, 0 deletions
diff --git a/net/sysctl_net.c b/net/sysctl_net.c
new file mode 100644
index 000000000000..3f6e31069c54
--- /dev/null
+++ b/net/sysctl_net.c
@@ -0,0 +1,65 @@
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[];
21#endif
22
23extern struct ctl_table core_table[];
24
25#ifdef CONFIG_NET
26extern struct ctl_table ether_table[];
27#endif
28
29#ifdef CONFIG_TR
30extern struct ctl_table tr_table[];
31#endif
32
33struct ctl_table net_table[] = {
34 {
35 .ctl_name = NET_CORE,
36 .procname = "core",
37 .mode = 0555,
38 .child = core_table,
39 },
40#ifdef CONFIG_NET
41 {
42 .ctl_name = NET_ETHER,
43 .procname = "ethernet",
44 .mode = 0555,
45 .child = ether_table,
46 },
47#endif
48#ifdef CONFIG_INET
49 {
50 .ctl_name = NET_IPV4,
51 .procname = "ipv4",
52 .mode = 0555,
53 .child = ipv4_table
54 },
55#endif
56#ifdef CONFIG_TR
57 {
58 .ctl_name = NET_TR,
59 .procname = "token-ring",
60 .mode = 0555,
61 .child = tr_table,
62 },
63#endif
64 { 0 },
65};