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.
23 lines
443 B
C
23 lines
443 B
C
#ifndef _LINUX_TERMIOS_H
|
|
#define _LINUX_TERMIOS_H
|
|
|
|
#include <linux/types.h>
|
|
#include <asm/termios.h>
|
|
|
|
#define NFF 5
|
|
|
|
struct termiox
|
|
{
|
|
__u16 x_hflag;
|
|
__u16 x_cflag;
|
|
__u16 x_rflag[NFF];
|
|
__u16 x_sflag;
|
|
};
|
|
|
|
#define RTSXOFF 0x0001 /* RTS flow control on input */
|
|
#define CTSXON 0x0002 /* CTS flow control on output */
|
|
#define DTRXOFF 0x0004 /* DTR flow control on input */
|
|
#define DSRXON 0x0008 /* DCD flow control on output */
|
|
|
|
#endif
|