aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv6
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@gmx.de>2007-02-07 18:12:33 -0500
committerDavid S. Miller <davem@sunset.davemloft.net>2007-02-08 15:39:20 -0500
commite60a13e030867078f3c9fef8dca6cd8a5b883478 (patch)
tree773c26ade3f4d3f88fb83cc8044d35cbe0a01cbe /include/linux/netfilter_ipv6
parent6709dbbb1978abe039ea4b76c364bf003bf40de5 (diff)
[NETFILTER]: {ip,ip6}_tables: use struct xt_table instead of redefined structure names
Signed-off-by: Jan Engelhardt <jengelh@gmx.de> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netfilter_ipv6')
-rw-r--r--include/linux/netfilter_ipv6/ip6_tables.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/netfilter_ipv6/ip6_tables.h b/include/linux/netfilter_ipv6/ip6_tables.h
index 2fbabab30d2..e37698c337a 100644
--- a/include/linux/netfilter_ipv6/ip6_tables.h
+++ b/include/linux/netfilter_ipv6/ip6_tables.h
@@ -286,14 +286,14 @@ ip6t_get_target(struct ip6t_entry *e)
286#include <linux/init.h> 286#include <linux/init.h>
287extern void ip6t_init(void) __init; 287extern void ip6t_init(void) __init;
288 288
289extern int ip6t_register_table(struct ip6t_table *table, 289extern int ip6t_register_table(struct xt_table *table,
290 const struct ip6t_replace *repl); 290 const struct ip6t_replace *repl);
291extern void ip6t_unregister_table(struct ip6t_table *table); 291extern void ip6t_unregister_table(struct xt_table *table);
292extern unsigned int ip6t_do_table(struct sk_buff **pskb, 292extern unsigned int ip6t_do_table(struct sk_buff **pskb,
293 unsigned int hook, 293 unsigned int hook,
294 const struct net_device *in, 294 const struct net_device *in,
295 const struct net_device *out, 295 const struct net_device *out,
296 struct ip6t_table *table); 296 struct xt_table *table);
297 297
298/* Check for an extension */ 298/* Check for an extension */
299extern int ip6t_ext_hdr(u8 nexthdr); 299extern int ip6t_ext_hdr(u8 nexthdr);