blob: 55538f6b60ffc56648687f9f72fd7d0ebafe6af3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- 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
Russell King496a22b2005-10-03 14:16:34 -070019#include <net/sock.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#ifdef CONFIG_INET
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030022#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#endif
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#ifdef CONFIG_NET
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030026#include <linux/if_ether.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#endif
28
29#ifdef CONFIG_TR
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030030#include <linux/if_tr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#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};