blob: 2312f0ec07b2791ffaece0a95eebaefa727f14be [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Ben Cheng30692c62013-10-15 18:26:18 -07002#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};