aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2006-08-22 03:33:45 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 17:55:31 -0400
commit52d9c42ef2563d2c420eb23b96bf5a4cae9e167b (patch)
tree003022136c43ea48a2d5dcde5c06c261b1705e86 /include
parent90528e6fe92ee1a353d6a639930e7d70d85b5c85 (diff)
[NETFILTER]: x_tables: add helpers for mass match/target registration
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter/x_tables.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h
index 48cc32d83f77..9a9912430e3a 100644
--- a/include/linux/netfilter/x_tables.h
+++ b/include/linux/netfilter/x_tables.h
@@ -290,8 +290,13 @@ struct xt_table_info
290 290
291extern int xt_register_target(struct xt_target *target); 291extern int xt_register_target(struct xt_target *target);
292extern void xt_unregister_target(struct xt_target *target); 292extern void xt_unregister_target(struct xt_target *target);
293extern int xt_register_targets(struct xt_target *target, unsigned int n);
294extern void xt_unregister_targets(struct xt_target *target, unsigned int n);
295
293extern int xt_register_match(struct xt_match *target); 296extern int xt_register_match(struct xt_match *target);
294extern void xt_unregister_match(struct xt_match *target); 297extern void xt_unregister_match(struct xt_match *target);
298extern int xt_register_matches(struct xt_match *match, unsigned int n);
299extern void xt_unregister_matches(struct xt_match *match, unsigned int n);
295 300
296extern int xt_check_match(const struct xt_match *match, unsigned short family, 301extern int xt_check_match(const struct xt_match *match, unsigned short family,
297 unsigned int size, const char *table, unsigned int hook, 302 unsigned int size, const char *table, unsigned int hook,