forked from ~ljy/RK356X_SDK_RELEASE

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