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