cleanup
[linux-2.4.21-pre4.git] / net / ipv6 / sysctl_net_ipv6.c
1 /*
2  * sysctl_net_ipv6.c: sysctl interface to net IPV6 subsystem.
3  *
4  * Changes:
5  * YOSHIFUJI Hideaki @USAGI:    added icmp sysctl table.
6  */
7
8 #include <linux/mm.h>
9 #include <linux/sysctl.h>
10 #include <linux/config.h>
11 #include <linux/in6.h>
12 #include <linux/ipv6.h>
13 #include <net/ndisc.h>
14 #include <net/ipv6.h>
15 #include <net/addrconf.h>
16
17 extern ctl_table ipv6_route_table[];
18 extern ctl_table ipv6_icmp_table[];
19
20 #ifdef CONFIG_SYSCTL
21
22 ctl_table ipv6_table[] = {
23         {NET_IPV6_ROUTE, "route", NULL, 0, 0555, ipv6_route_table},
24         {NET_IPV6_ICMP, "icmp", NULL, 0, 0500, ipv6_icmp_table},
25         {NET_IPV6_BINDV6ONLY, "bindv6only",
26          &sysctl_ipv6_bindv6only, sizeof(int), 0644, NULL, &proc_dointvec},
27         {0}
28 };
29
30 #ifdef MODULE
31 static struct ctl_table_header *ipv6_sysctl_header;
32 static struct ctl_table ipv6_root_table[];
33 static struct ctl_table ipv6_net_table[];
34
35
36 ctl_table ipv6_root_table[] = {
37         {CTL_NET, "net", NULL, 0, 0555, ipv6_net_table},
38         {0}
39 };
40
41 ctl_table ipv6_net_table[] = {
42         {NET_IPV6, "ipv6", NULL, 0, 0555, ipv6_table},
43         {0}
44 };
45
46 void ipv6_sysctl_register(void)
47 {
48         ipv6_sysctl_header = register_sysctl_table(ipv6_root_table, 0);
49 }
50
51 void ipv6_sysctl_unregister(void)
52 {
53         unregister_sysctl_table(ipv6_sysctl_header);
54 }
55 #endif  /* MODULE */
56
57 #endif /* CONFIG_SYSCTL */
58
59
60