linux-headers (unknown)

(root)/
include/
linux/
tc_ematch/
tc_em_ipt.h
       1  /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
       2  #ifndef __LINUX_TC_EM_IPT_H
       3  #define __LINUX_TC_EM_IPT_H
       4  
       5  #include <linux/types.h>
       6  #include <linux/pkt_cls.h>
       7  
       8  enum {
       9  	TCA_EM_IPT_UNSPEC,
      10  	TCA_EM_IPT_HOOK,
      11  	TCA_EM_IPT_MATCH_NAME,
      12  	TCA_EM_IPT_MATCH_REVISION,
      13  	TCA_EM_IPT_NFPROTO,
      14  	TCA_EM_IPT_MATCH_DATA,
      15  	__TCA_EM_IPT_MAX
      16  };
      17  
      18  #define TCA_EM_IPT_MAX (__TCA_EM_IPT_MAX - 1)
      19  
      20  #endif