2005-04-16 18:20:36 -04:00
|
|
|
#ifndef __NET_TC_IPT_H
|
|
|
|
#define __NET_TC_IPT_H
|
|
|
|
|
|
|
|
#include <net/act_api.h>
|
|
|
|
|
2006-03-22 16:56:56 -05:00
|
|
|
struct xt_entry_target;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
struct tcf_ipt
|
|
|
|
{
|
|
|
|
tca_gen(ipt);
|
|
|
|
u32 hook;
|
|
|
|
char *tname;
|
2006-03-22 16:56:56 -05:00
|
|
|
struct xt_entry_target *t;
|
2005-04-16 18:20:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|