blob: c4bc9ee9b3303ca17c3937525dfb908bc57f613d [file] [log] [blame]
Ben Cheng30692c62013-10-15 18:26:18 -07001#include <linux/types.h>
2
3#define XT_CONNLABEL_MAXBIT 127
4enum xt_connlabel_mtopts {
5 XT_CONNLABEL_OP_INVERT = 1 << 0,
6 XT_CONNLABEL_OP_SET = 1 << 1,
7};
8
9struct xt_connlabel_mtinfo {
10 __u16 bit;
11 __u16 options;
12};