From: Piotrek Kaczmarek <kaczorek@k.daleka.net>
To: netfilter-devel@lists.netfilter.org
Subject: libipt_connbytes.c bug in iptables-1.3.1
Date: Mon, 18 Apr 2005 01:09:27 +0200 [thread overview]
Message-ID: <20050417230927.GA23821@daleka.net> (raw)
I've spent couple of hours seaching for a fix for this bug... can you apply the patch below?
# iptables -t mangle -A PREROUTING -m connbytes --connbytes-mode packets
iptables v1.3.1: Unknown arg `packets'
Try `iptables -h' or 'iptables --help' for more information.
# iptables -t mangle -A PREROUTING -m connbytes --connbytes-mode bytes
iptables v1.3.1: Unknown arg `bytes'
Try `iptables -h' or 'iptables --help' for more information.
There's a patch:
########### cut
--- libipt_connbytes.c.fucked 2005-04-18 01:00:28.000000000 +0200
+++ libipt_connbytes.c 2005-04-18 00:56:10.000000000 +0200
@@ -93,6 +93,7 @@
exit_error(PARAMETER_PROBLEM,
"Unknown --connbytes-mode `%s'", optarg);
*flags |= 4;
+ break;
default:
return 0;
}
########### cut
--
Piotrek Kaczmarek
next reply other threads:[~2005-04-17 23:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-04-17 23:09 Piotrek Kaczmarek [this message]
2005-04-18 10:26 ` libipt_connbytes.c bug in iptables-1.3.1 Jonas Berlin
2005-04-19 0:21 ` Andy Furniss
2005-04-24 16:14 ` Patrick McHardy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050417230927.GA23821@daleka.net \
--to=kaczorek@k.daleka.net \
--cc=netfilter-devel@lists.netfilter.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.