]> git.proxmox.com Git - mirror_iproute2.git/blob - include/linux/tc_act/tc_connmark.h
vv4.6.0
[mirror_iproute2.git] / include / linux / tc_act / tc_connmark.h
1 #ifndef __UAPI_TC_CONNMARK_H
2 #define __UAPI_TC_CONNMARK_H
3
4 #include <linux/types.h>
5 #include <linux/pkt_cls.h>
6
7 #define TCA_ACT_CONNMARK 14
8
9 struct tc_connmark {
10 tc_gen;
11 __u16 zone;
12 };
13
14 enum {
15 TCA_CONNMARK_UNSPEC,
16 TCA_CONNMARK_PARMS,
17 TCA_CONNMARK_TM,
18 __TCA_CONNMARK_MAX
19 };
20 #define TCA_CONNMARK_MAX (__TCA_CONNMARK_MAX - 1)
21
22 #endif