1e30a014e3
This patch moves {ip,ip6,arp}t_entry_{match,target} definitions to x_tables.h. This move simplifies code and future compatibility fixes. Signed-off-by: Dmitry Mishin <dim@openvz.org> Acked-off-by: Kirill Korotaev <dev@openvz.org> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
194 B
C
17 lines
194 B
C
#ifndef __NET_TC_IPT_H
|
|
#define __NET_TC_IPT_H
|
|
|
|
#include <net/act_api.h>
|
|
|
|
struct xt_entry_target;
|
|
|
|
struct tcf_ipt
|
|
{
|
|
tca_gen(ipt);
|
|
u32 hook;
|
|
char *tname;
|
|
struct xt_entry_target *t;
|
|
};
|
|
|
|
#endif
|