forked from Qortal/Brooklyn
* 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.
20 lines
349 B
C
20 lines
349 B
C
#ifndef _LINUX_UTS_H
|
|
#define _LINUX_UTS_H
|
|
|
|
/*
|
|
* Defines for what uname() should return
|
|
*/
|
|
#ifndef UTS_SYSNAME
|
|
#define UTS_SYSNAME "Linux"
|
|
#endif
|
|
|
|
#ifndef UTS_NODENAME
|
|
#define UTS_NODENAME CONFIG_DEFAULT_HOSTNAME /* set by sethostname() */
|
|
#endif
|
|
|
|
#ifndef UTS_DOMAINNAME
|
|
#define UTS_DOMAINNAME "(none)" /* set by setdomainname() */
|
|
#endif
|
|
|
|
#endif
|