From 23545c2a7a31c68c1e49c7c901b632c2f1c59968 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Thu, 14 Feb 2008 04:23:04 +0100 Subject: Implement AF_UNSPEC as a wildcard for extensions --- extensions/libxt_time.c | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'extensions/libxt_time.c') diff --git a/extensions/libxt_time.c b/extensions/libxt_time.c index c39ab1a0..c551a6fe 100644 --- a/extensions/libxt_time.c +++ b/extensions/libxt_time.c @@ -466,21 +466,7 @@ static void time_save(const void *ip, const struct xt_entry_match *match) static struct xtables_match time_match = { .name = "time", - .family = AF_INET, - .version = IPTABLES_VERSION, - .size = XT_ALIGN(sizeof(struct xt_time_info)), - .userspacesize = XT_ALIGN(sizeof(struct xt_time_info)), - .help = time_help, - .init = time_init, - .parse = time_parse, - .print = time_print, - .save = time_save, - .extra_opts = time_opts, -}; - -static struct xtables_match time_match6 = { - .name = "time", - .family = AF_INET6, + .family = AF_UNSPEC, .version = IPTABLES_VERSION, .size = XT_ALIGN(sizeof(struct xt_time_info)), .userspacesize = XT_ALIGN(sizeof(struct xt_time_info)), @@ -495,5 +481,4 @@ static struct xtables_match time_match6 = { void _init(void) { xtables_register_match(&time_match); - xtables_register_match(&time_match6); } -- cgit v1.2.3