aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netfilter/x_tables.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h
index 365fabe1b16e..fdd3342c1235 100644
--- a/include/linux/netfilter/x_tables.h
+++ b/include/linux/netfilter/x_tables.h
@@ -361,6 +361,7 @@ struct xt_table {
361 struct module *me; 361 struct module *me;
362 362
363 u_int8_t af; /* address/protocol family */ 363 u_int8_t af; /* address/protocol family */
364 int priority; /* hook order */
364 365
365 /* A unique name... */ 366 /* A unique name... */
366 const char name[XT_TABLE_MAXNAMELEN]; 367 const char name[XT_TABLE_MAXNAMELEN];
@@ -522,6 +523,9 @@ static inline unsigned long ifname_compare_aligned(const char *_a,
522 return ret; 523 return ret;
523} 524}
524 525
526extern struct nf_hook_ops *xt_hook_link(const struct xt_table *, nf_hookfn *);
527extern void xt_hook_unlink(const struct xt_table *, struct nf_hook_ops *);
528
525#ifdef CONFIG_COMPAT 529#ifdef CONFIG_COMPAT
526#include <net/compat.h> 530#include <net/compat.h>
527 531