[NETNS]: Introduce a netns_core structure.
[safe/jmp/linux-2.6] / include / net / netns / core.h
1 #ifndef __NETNS_CORE_H__
2 #define __NETNS_CORE_H__
3
4 struct ctl_table_header;
5
6 struct netns_core {
7         /* core sysctls */
8         struct ctl_table_header *sysctl_hdr;
9
10         int     sysctl_somaxconn;
11 };
12
13 #endif