1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#include <linux/types.h>
3
4#define XT_CONNLABEL_MAXBIT 127
5enum xt_connlabel_mtopts {
6	XT_CONNLABEL_OP_INVERT = 1 << 0,
7	XT_CONNLABEL_OP_SET    = 1 << 1,
8};
9
10struct xt_connlabel_mtinfo {
11	__u16 bit;
12	__u16 options;
13};
14