Displaying 4 results from an estimated 4 matches for "iptables_target".
Did you mean:
iptables_targets
2003 Aug 23
1
[Bug 117] register_target() creates circular linked list
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=117
------- Additional Comments From laforge@netfilter.org 2003-08-23 22:24 -------
I'm not sure if I understand you correctly. How does register_target create a
circular list?
initially, iptables_targets == NULL.
then you register the first target (t), and you set t->next = iptables_targets
(== NULL), and then point iptables_targets to t.
Result: iptables_targets == t; t->next == NULL.
if you register a second target (t2).
Result: iptables_targets == t2, t2->next == t, t->next == NU...
2003 Jun 19
0
[Bug 100] New: NETFILTER_VERSION -> IPTABLES_VERSION in libipt_IPMARK.c
...; --and-mask value logical AND ip address with this value becomes MARK\n"
" --or-mask value logical OR ip address with this value becomes MARK\n"
"\n",
-NETFILTER_VERSION);
+IPTABLES_VERSION);
}
static struct option opts[] = {
@@ -152,7 +152,7 @@
struct iptables_target ipmark
= { NULL,
"IPMARK",
- NETFILTER_VERSION,
+ IPTABLES_VERSION,
IPT_ALIGN(sizeof(struct ipt_ipmark_target_info)),
IPT_ALIGN(sizeof(struct ipt_ipmark_target_info)),
&help,
------- You are receiving this mail because: -------
You are on the CC list for...
2005 Dec 13
7
MARK: targinfosize 8 != 4
Hello all,
I got this problem while trying to shape traffic with iptables MARK and
HTB.
MARK: targinfosize 8 != 4
--set-mark gives "invalid argument" error message.
Kernel version is 2.4.29 (some patches from patch o matic applied)
Iptables version 1.3.4
Intel x86 architecture.
I saw this problem discussed in a few places, but the discussions didn''t
come to a conclusion
2002 May 14
1
what''s the meaning of xchg()?
...ntry_target *target,
>+ int numeric)
>+{
>+ printf("IMQX");
>+}
>+
>+/* Saves the union ipt_targinfo in parsable form to stdout. */
>+static void
>+save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
>+{
>+}
>+
>+static
>+struct iptables_target mark
>+= { NULL,
>+ "IMQX",
>+ NETFILTER_VERSION,
>+ 0,
>+ 0,
>+ &help,
>+ &init,
>+ &parse,
>+ &final_check,
>+ &print,
>+ &save,
>+ opts
>+};
>+
>+void _init(void)
>+{
>+ register...