root/include/uapi/linux/tc_act/tc_defact.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
   2 #ifndef __LINUX_TC_DEF_H
   3 #define __LINUX_TC_DEF_H
   4 
   5 #include <linux/pkt_cls.h>
   6 
   7 struct tc_defact {
   8         tc_gen;
   9 };
  10 
  11 enum {
  12         TCA_DEF_UNSPEC,
  13         TCA_DEF_TM,
  14         TCA_DEF_PARMS,
  15         TCA_DEF_DATA,
  16         TCA_DEF_PAD,
  17         __TCA_DEF_MAX
  18 };
  19 #define TCA_DEF_MAX (__TCA_DEF_MAX - 1)
  20 
  21 #endif

/* [<][>][^][v][top][bottom][index][help] */