summaryrefslogtreecommitdiffstats
path: root/extensions/libipt_connlimit.c
diff options
context:
space:
mode:
authorlaforge <laforge>2002-05-29 13:08:15 +0000
committerlaforge <laforge>2002-05-29 13:08:15 +0000
commite822c0ec10e20248b959e9b271efef125feb8a4d (patch)
tree795febe10f0229253621990c2c0616a0054d9906 /extensions/libipt_connlimit.c
parent66cd3f8ace6b96ea26c3e9ca4818a0935900622a (diff)
globally replace NETFILTER_VERSION with IPTABLES_VERSION to have consistent naming
Diffstat (limited to 'extensions/libipt_connlimit.c')
-rw-r--r--extensions/libipt_connlimit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libipt_connlimit.c b/extensions/libipt_connlimit.c
index a9a0f37..f0df453 100644
--- a/extensions/libipt_connlimit.c
+++ b/extensions/libipt_connlimit.c
@@ -17,7 +17,7 @@ help(void)
"iplimit v%s options:\n"
"[!] --iplimit-above n match if the number of existing tcp connections is (not) above n\n"
" --iplimit-mask n group hosts using mask\n"
-"\n", NETFILTER_VERSION);
+"\n", IPTABLES_VERSION);
}
static struct option opts[] = {
@@ -114,7 +114,7 @@ static void save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
static struct iptables_match iplimit = {
name: "iplimit",
- version: NETFILTER_VERSION,
+ version: IPTABLES_VERSION,
size: IPT_ALIGN(sizeof(struct ipt_iplimit_info)),
userspacesize: offsetof(struct ipt_iplimit_info,data),
help: help,