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