/usr/include/linux/tc_act
NameSizeModeActions
tc_bpf.h5090644editdlrm
tc_connmark.h3900644editdlrm
tc_csum.h6440644editdlrm
tc_ct.h9340644editdlrm
tc_ctinfo.h5560644editdlrm
tc_defact.h3220644editdlrm
tc_gact.h6260644editdlrm
tc_gate.h8700644editdlrm
tc_ife.h6000644editdlrm
tc_ipt.h4150644editdlrm
tc_mirred.h7280644editdlrm
tc_mpls.h10240644editdlrm
tc_nat.h4240644editdlrm
tc_pedit.h15270644editdlrm
tc_sample.h4560644editdlrm
tc_skbedit.h8480644editdlrm
tc_skbmod.h5870644editdlrm
tc_tunnel_key.h24780644editdlrm
tc_vlan.h6720644editdlrm
Edit: /usr/include/linux/tc_act/tc_ife.h (600B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __UAPI_TC_IFE_H #define __UAPI_TC_IFE_H #include #include #include /* Flag bits for now just encoding/decoding; mutually exclusive */ #define IFE_ENCODE 1 #define IFE_DECODE 0 struct tc_ife { tc_gen; __u16 flags; }; /*XXX: We need to encode the total number of bytes consumed */ enum { TCA_IFE_UNSPEC, TCA_IFE_PARMS, TCA_IFE_TM, TCA_IFE_DMAC, TCA_IFE_SMAC, TCA_IFE_TYPE, TCA_IFE_METALST, TCA_IFE_PAD, __TCA_IFE_MAX }; #define TCA_IFE_MAX (__TCA_IFE_MAX - 1) #endif