Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __NET_TC_IPT_H
0003 #define __NET_TC_IPT_H
0004 
0005 #include <net/act_api.h>
0006 
0007 struct xt_entry_target;
0008 
0009 struct tcf_ipt {
0010     struct tc_action    common;
0011     u32         tcfi_hook;
0012     char            *tcfi_tname;
0013     struct xt_entry_target  *tcfi_t;
0014 };
0015 #define to_ipt(a) ((struct tcf_ipt *)a)
0016 
0017 #endif /* __NET_TC_IPT_H */