mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 23:03:06 +00:00
* 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.
24 lines
356 B
C
24 lines
356 B
C
#ifndef __UAPI_TC_CONNMARK_H
|
|
#define __UAPI_TC_CONNMARK_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/pkt_cls.h>
|
|
|
|
#define TCA_ACT_CONNMARK 14
|
|
|
|
struct tc_connmark {
|
|
tc_gen;
|
|
__u16 zone;
|
|
};
|
|
|
|
enum {
|
|
TCA_CONNMARK_UNSPEC,
|
|
TCA_CONNMARK_PARMS,
|
|
TCA_CONNMARK_TM,
|
|
TCA_CONNMARK_PAD,
|
|
__TCA_CONNMARK_MAX
|
|
};
|
|
#define TCA_CONNMARK_MAX (__TCA_CONNMARK_MAX - 1)
|
|
|
|
#endif
|