|
Revision 1, 1.1 kB
(checked in by dkaplan1, 7 years ago)
|
Initial import
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
#include <linux/config.h> |
|---|
| 16 |
#include <linux/mm.h> |
|---|
| 17 |
#include <linux/sysctl.h> |
|---|
| 18 |
|
|---|
| 19 |
#ifdef CONFIG_INET |
|---|
| 20 |
extern struct ctl_table ipv4_table[]; |
|---|
| 21 |
#endif |
|---|
| 22 |
|
|---|
| 23 |
extern struct ctl_table core_table[]; |
|---|
| 24 |
|
|---|
| 25 |
#ifdef CONFIG_NET |
|---|
| 26 |
extern struct ctl_table ether_table[]; |
|---|
| 27 |
#endif |
|---|
| 28 |
|
|---|
| 29 |
#ifdef CONFIG_TR |
|---|
| 30 |
extern struct ctl_table tr_table[]; |
|---|
| 31 |
#endif |
|---|
| 32 |
|
|---|
| 33 |
struct 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 |
}; |
|---|