diff options
author | Patrick McHardy <kaber@trash.net> | 2006-08-22 03:33:45 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 17:55:31 -0400 |
commit | 52d9c42ef2563d2c420eb23b96bf5a4cae9e167b (patch) | |
tree | 003022136c43ea48a2d5dcde5c06c261b1705e86 /include | |
parent | 90528e6fe92ee1a353d6a639930e7d70d85b5c85 (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.h | 5 |
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 | ||
291 | extern int xt_register_target(struct xt_target *target); | 291 | extern int xt_register_target(struct xt_target *target); |
292 | extern void xt_unregister_target(struct xt_target *target); | 292 | extern void xt_unregister_target(struct xt_target *target); |
293 | extern int xt_register_targets(struct xt_target *target, unsigned int n); | ||
294 | extern void xt_unregister_targets(struct xt_target *target, unsigned int n); | ||
295 | |||
293 | extern int xt_register_match(struct xt_match *target); | 296 | extern int xt_register_match(struct xt_match *target); |
294 | extern void xt_unregister_match(struct xt_match *target); | 297 | extern void xt_unregister_match(struct xt_match *target); |
298 | extern int xt_register_matches(struct xt_match *match, unsigned int n); | ||
299 | extern void xt_unregister_matches(struct xt_match *match, unsigned int n); | ||
295 | 300 | ||
296 | extern int xt_check_match(const struct xt_match *match, unsigned short family, | 301 | extern 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, |