Displaying 4 results from an estimated 4 matches for "netfilter_version".
2003 Jun 19
0
[Bug 100] New: NETFILTER_VERSION -> IPTABLES_VERSION in libipt_IPMARK.c
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=100
           Summary: NETFILTER_VERSION -> IPTABLES_VERSION  in
                    libipt_IPMARK.c
           Product: iptables userspace
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: iptables
        Assign...
2002 Jun 20
3
simple error in extensions/libipt_ROUTE.c extensions/libipt_IMQ.c
Hi Patrick !
I find simple error in 
extensions/libipt_ROUTE.c line 24 and 127 -- change NETFILTER_VERSION to IPTABLES_VERSION
extensions/libipt_IMQ.c line 18 and 87 -- change NETFILTER_VERSION to IPTABLES_VERSION
(iptables-20020618)
-----------------------------------
mailto:alexey_talikov@texlab.com.uz
BR
Alexey Talikov
FORTEK
-----------------------------------
2002 Dec 02
1
IMQ
Has anybody got imq running on iptables 1.2.7a.  The home page for imq only
seems to have a patch for 1.2.6a.
-- 
Aaron Clausen
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2002 May 14
1
what''s the meaning of xchg()?
....h>
>+#include <getopt.h>
>+
>+#include <iptables.h>
>+#include <linux/netfilter_ipv4/ip_tables.h>
>+
>+/* Function which prints out usage message. */
>+static void
>+help(void)
>+{
>+	printf(
>+"IMQX target vs has no options\n", 
>+NETFILTER_VERSION);
>+}
>+
>+static struct option opts[] = {
>+	{ 0 }
>+};
>+
>+/* Initialize the target. */
>+static void
>+init(struct ipt_entry_target *t, unsigned int *nfcache)
>+{
>+}
>+
>+/* Function which parses command options; returns true if it
>+   ate an option *...