From 8b7c64d6ba156a99008fcd810cba874c73294333 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 15 Apr 2008 11:48:25 +0200 Subject: Remove old functions, constants --- extensions/libip6t_hbh.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'extensions/libip6t_hbh.c') diff --git a/extensions/libip6t_hbh.c b/extensions/libip6t_hbh.c index ad12547a..e12fe4ed 100644 --- a/extensions/libip6t_hbh.c +++ b/extensions/libip6t_hbh.c @@ -18,11 +18,11 @@ static void hbh_help(void) { printf( -"hbh v%s options:\n" +"hbh match options:\n" " --hbh-len [!] length total length of this header\n" " --hbh-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 hbh_opts[] = { @@ -214,11 +214,12 @@ static void hbh_save(const void *ip, const struct xt_entry_match *match) printf("--hbh-not-strict "); } -static struct ip6tables_match hbh_match6 = { +static struct xtables_match hbh_mt6_reg = { .name = "hbh", - .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 = hbh_help, .init = hbh_init, .parse = hbh_parse, @@ -230,5 +231,5 @@ static struct ip6tables_match hbh_match6 = { void _init(void) { - register_match6(&hbh_match6); + xtables_register_match(&hbh_mt6_reg); } -- cgit v1.2.3