Linux-libre 5.4.47-gnu
[librecmc/linux-libre.git] / include / uapi / linux / tc_act / tc_connmark.h
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef __UAPI_TC_CONNMARK_H
3 #define __UAPI_TC_CONNMARK_H
4
5 #include <linux/types.h>
6 #include <linux/pkt_cls.h>
7
8 struct tc_connmark {
9         tc_gen;
10         __u16 zone;
11 };
12
13 enum {
14         TCA_CONNMARK_UNSPEC,
15         TCA_CONNMARK_PARMS,
16         TCA_CONNMARK_TM,
17         TCA_CONNMARK_PAD,
18         __TCA_CONNMARK_MAX
19 };
20 #define TCA_CONNMARK_MAX (__TCA_CONNMARK_MAX - 1)
21
22 #endif