2005-04-16 22:20:36 +00:00
|
|
|
#ifndef __NET_TC_IPT_H
|
|
|
|
#define __NET_TC_IPT_H
|
|
|
|
|
|
|
|
#include <net/act_api.h>
|
|
|
|
|
2006-03-22 21:56:56 +00:00
|
|
|
struct xt_entry_target;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-08-22 06:54:55 +00:00
|
|
|
struct tcf_ipt {
|
2016-07-25 23:09:42 +00:00
|
|
|
struct tc_action common;
|
2006-08-22 06:54:55 +00:00
|
|
|
u32 tcfi_hook;
|
|
|
|
char *tcfi_tname;
|
|
|
|
struct xt_entry_target *tcfi_t;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
2016-07-25 23:09:41 +00:00
|
|
|
#define to_ipt(a) ((struct tcf_ipt *)a)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-08-22 06:54:55 +00:00
|
|
|
#endif /* __NET_TC_IPT_H */
|