1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef __LINUX_TC_GACT_H
8 #define __LINUX_TC_GACT_H
9 #include <linux/types.h>
10 #include <linux/pkt_cls.h>
11 struct tc_gact {
12   tc_gen;
13 };
14 struct tc_gact_p {
15 #define PGACT_NONE 0
16 #define PGACT_NETRAND 1
17 #define PGACT_DETERM 2
18 #define MAX_RAND (PGACT_DETERM + 1)
19   __u16 ptype;
20   __u16 pval;
21   int paction;
22 };
23 enum {
24   TCA_GACT_UNSPEC,
25   TCA_GACT_TM,
26   TCA_GACT_PARMS,
27   TCA_GACT_PROB,
28   TCA_GACT_PAD,
29   __TCA_GACT_MAX
30 };
31 #define TCA_GACT_MAX (__TCA_GACT_MAX - 1)
32 #endif
33