3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-01 07:42:18 +00:00
Brooklyn/include/net/netns/core.h

23 lines
366 B
C
Raw Normal View History

2022-04-02 13:17:33 +00:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __NETNS_CORE_H__
#define __NETNS_CORE_H__
2022-09-13 18:14:27 +00:00
#include <linux/types.h>
2022-04-02 13:17:33 +00:00
struct ctl_table_header;
struct prot_inuse;
struct netns_core {
/* core sysctls */
struct ctl_table_header *sysctl_hdr;
int sysctl_somaxconn;
u8 sysctl_txrehash;
2022-04-02 13:17:33 +00:00
#ifdef CONFIG_PROC_FS
struct prot_inuse __percpu *prot_inuse;
#endif
};
#endif