blob: cb37ad08427faca6d51ac7975c4108fdb6822f71 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __NET_TC_IPT_H
2#define __NET_TC_IPT_H
3
4#include <net/act_api.h>
5
Dmitry Mishin1e30a012006-03-22 13:56:56 -08006struct xt_entry_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8struct tcf_ipt
9{
10 tca_gen(ipt);
11 u32 hook;
12 char *tname;
Dmitry Mishin1e30a012006-03-22 13:56:56 -080013 struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014};
15
16#endif