From 6cd49745931f42cfe2280bf78e483035c3c5e2e6 Mon Sep 17 00:00:00 2001 From: "/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net" Date: Tue, 15 Apr 2008 12:01:06 +0000 Subject: [PATCH 08/10] Remove old functions, constants --- extensions/libip6t_dst.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'extensions/libip6t_dst.c') diff --git a/extensions/libip6t_dst.c b/extensions/libip6t_dst.c index 5b06033..d3c54dd 100644 --- a/extensions/libip6t_dst.c +++ b/extensions/libip6t_dst.c @@ -15,11 +15,11 @@ static void dst_help(void) { printf( -"dst v%s options:\n" +"dst match options:\n" " --dst-len [!] length total length of this header\n" " --dst-opts TYPE[:LEN][,TYPE[:LEN]...]\n" " Options and its length (list, max: %d)\n", -IPTABLES_VERSION, IP6T_OPTS_OPTSNR); +IP6T_OPTS_OPTSNR); } static const struct option dst_opts[] = { @@ -227,11 +227,12 @@ static void dst_save(const void *ip, const struct xt_entry_match *match) printf("--dst-not-strict "); } -static struct ip6tables_match dst_match6 = { +static struct xtables_match dst_mt6_reg = { .name = "dst", - .version = IPTABLES_VERSION, - .size = IP6T_ALIGN(sizeof(struct ip6t_opts)), - .userspacesize = IP6T_ALIGN(sizeof(struct ip6t_opts)), + .version = XTABLES_VERSION, + .family = PF_INET6, + .size = XT_ALIGN(sizeof(struct ip6t_opts)), + .userspacesize = XT_ALIGN(sizeof(struct ip6t_opts)), .help = dst_help, .init = dst_init, .parse = dst_parse, @@ -243,5 +244,5 @@ static struct ip6tables_match dst_match6 = { void _init(void) { - register_match6(&dst_match6); + xtables_register_match(&dst_mt6_reg); } -- cgit v1.2.3