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.
23 lines
397 B
C
23 lines
397 B
C
#ifndef __LINUX_TC_IPT_H
|
|
#define __LINUX_TC_IPT_H
|
|
|
|
#include <linux/pkt_cls.h>
|
|
|
|
#define TCA_ACT_IPT 6
|
|
#define TCA_ACT_XT 10
|
|
|
|
enum {
|
|
TCA_IPT_UNSPEC,
|
|
TCA_IPT_TABLE,
|
|
TCA_IPT_HOOK,
|
|
TCA_IPT_INDEX,
|
|
TCA_IPT_CNT,
|
|
TCA_IPT_TM,
|
|
TCA_IPT_TARG,
|
|
TCA_IPT_PAD,
|
|
__TCA_IPT_MAX
|
|
};
|
|
#define TCA_IPT_MAX (__TCA_IPT_MAX - 1)
|
|
|
|
#endif
|