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/libipt_ah.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'extensions/libipt_ah.c') diff --git a/extensions/libipt_ah.c b/extensions/libipt_ah.c index 2555b5d..182b51a 100644 --- a/extensions/libipt_ah.c +++ b/extensions/libipt_ah.c @@ -12,10 +12,9 @@ static void ah_help(void) { printf( -"AH v%s options:\n" +"ah match options:\n" " --ahspi [!] spi[:spi]\n" -" match spi (range)\n", -IPTABLES_VERSION); +" match spi (range)\n"); } static const struct option ah_opts[] = { @@ -156,11 +155,12 @@ static void ah_save(const void *ip, const struct xt_entry_match *match) } -static struct iptables_match ah_match = { +static struct xtables_match ah_mt_reg = { .name = "ah", - .version = IPTABLES_VERSION, - .size = IPT_ALIGN(sizeof(struct ipt_ah)), - .userspacesize = IPT_ALIGN(sizeof(struct ipt_ah)), + .version = XTABLES_VERSION, + .family = PF_INET, + .size = XT_ALIGN(sizeof(struct ipt_ah)), + .userspacesize = XT_ALIGN(sizeof(struct ipt_ah)), .help = ah_help, .init = ah_init, .parse = ah_parse, @@ -172,5 +172,5 @@ static struct iptables_match ah_match = { void _init(void) { - register_match(&ah_match); + xtables_register_match(&ah_mt_reg); } -- cgit v1.2.3