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/libipt_SNAT.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'extensions/libipt_SNAT.c') diff --git a/extensions/libipt_SNAT.c b/extensions/libipt_SNAT.c index 7b9e1763..11536c61 100644 --- a/extensions/libipt_SNAT.c +++ b/extensions/libipt_SNAT.c @@ -23,12 +23,10 @@ struct ipt_natinfo static void SNAT_help(void) { printf( -"SNAT v%s options:\n" +"SNAT target options:\n" " --to-source [-][:port-port]\n" " Address to map source to.\n" -"[--random]\n" -"\n", -IPTABLES_VERSION); +"[--random]\n"); } static const struct option SNAT_opts[] = { @@ -43,7 +41,7 @@ append_range(struct ipt_natinfo *info, const struct ip_nat_range *range) unsigned int size; /* One rangesize already in struct ipt_natinfo */ - size = IPT_ALIGN(sizeof(*info) + info->mr.rangesize * sizeof(*range)); + size = XT_ALIGN(sizeof(*info) + info->mr.rangesize * sizeof(*range)); info = realloc(info, size); if (!info) @@ -244,11 +242,12 @@ static void SNAT_save(const void *ip, const struct xt_entry_target *target) } } -static struct iptables_target snat_target = { +static struct xtables_target snat_tg_reg = { .name = "SNAT", - .version = IPTABLES_VERSION, - .size = IPT_ALIGN(sizeof(struct ip_nat_multi_range)), - .userspacesize = IPT_ALIGN(sizeof(struct ip_nat_multi_range)), + .version = XTABLES_VERSION, + .family = PF_INET, + .size = XT_ALIGN(sizeof(struct ip_nat_multi_range)), + .userspacesize = XT_ALIGN(sizeof(struct ip_nat_multi_range)), .help = SNAT_help, .parse = SNAT_parse, .final_check = SNAT_check, @@ -259,5 +258,5 @@ static struct iptables_target snat_target = { void _init(void) { - register_target(&snat_target); + xtables_register_target(&snat_tg_reg); } -- cgit v1.2.3