mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 06:08:41 +07:00
14 lines
190 B
C
14 lines
190 B
C
|
#ifndef __NETNS_CORE_H__
|
||
|
#define __NETNS_CORE_H__
|
||
|
|
||
|
struct ctl_table_header;
|
||
|
|
||
|
struct netns_core {
|
||
|
/* core sysctls */
|
||
|
struct ctl_table_header *sysctl_hdr;
|
||
|
|
||
|
int sysctl_somaxconn;
|
||
|
};
|
||
|
|
||
|
#endif
|