1 #ifndef _XT_SECMARK_H_target
2 #define _XT_SECMARK_H_target
4 #include <linux/types.h>
7 * This is intended for use by various security subsystems (but not
10 * 'mode' refers to the specific security subsystem which the
11 * packets are being marked for.
13 #define SECMARK_MODE_SEL 0x01 /* SELinux */
14 #define SECMARK_SECCTX_MAX 256
16 struct xt_secmark_target_info
{
19 char secctx
[SECMARK_SECCTX_MAX
];
22 #endif /*_XT_SECMARK_H_target */