forked from Qortal/Brooklyn
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
14 lines
224 B
C
14 lines
224 B
C
/*
|
|
* Unix network namespace
|
|
*/
|
|
#ifndef __NETNS_UNIX_H__
|
|
#define __NETNS_UNIX_H__
|
|
|
|
struct ctl_table_header;
|
|
struct netns_unix {
|
|
int sysctl_max_dgram_qlen;
|
|
struct ctl_table_header *ctl;
|
|
};
|
|
|
|
#endif /* __NETNS_UNIX_H__ */
|