blob: 02eccebd55ae50508cb28f083df59aa068fda746 [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
6struct ipt_entry_target;
7
8struct tcf_ipt
9{
10 tca_gen(ipt);
11 u32 hook;
12 char *tname;
13 struct ipt_entry_target *t;
14};
15
16#endif