summaryrefslogtreecommitdiffstats
path: root/extensions/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Unifies libip[6]t_NFQUEUE.c into libxt_NFQUEUE.cYasuyuki KOZAKAI2007-07-241-3/+3
|
* Unifies libip[6]t_SECMARK.c into libxt_SECMARK.cYasuyuki KOZAKAI2007-07-241-2/+9
|
* Unifies libip[6]t_TCPMSS.c into libxt_TCPMSS.cYasuyuki KOZAKAI2007-07-241-3/+3
|
* Add IPv6 support to comment matchYasuyuki KOZAKAI2007-07-241-2/+2
|
* Add IPv6 support to dscp match.Yasuyuki KOZAKAI2007-07-241-2/+2
|
* Unifies libip[6]t_esp.c into libxt_esp.cYasuyuki KOZAKAI2007-07-241-2/+2
|
* Unifies libip[6]t_length.c into libxt_length.cYasuyuki KOZAKAI2007-07-241-3/+3
|
* Unifies libip[6]t_limit.c into libxt_limit.c.Yasuyuki KOZAKAI2007-07-241-3/+3
|
* Unifies libip[6]t_mac.c into libxt_mac.cYasuyuki KOZAKAI2007-07-241-3/+3
|
* Unifies libip[6]t_physdev.c into libxt_physdev.cYasuyuki KOZAKAI2007-07-241-3/+3
|
* Add IPv6 support to pkttype matchYasuyuki KOZAKAI2007-07-241-2/+2
|
* Unifies libip[6]t_sctp.c into libxt_sctp.cYasuyuki KOZAKAI2007-07-241-2/+2
|
* Unifies libip[6]t_standard.c into libxt_standard.cYasuyuki KOZAKAI2007-07-241-3/+3
|
* Unifies libip[6]t_tcp.c into libxt_tcp.c.Yasuyuki KOZAKAI2007-07-241-3/+3
|
* Add IPv6 support to tcpmss matchYasuyuki KOZAKAI2007-07-241-2/+2
|
* Unifies libip[6]t_udp.c into libxt_udp.cYasuyuki KOZAKAI2007-07-241-3/+3
|
* Unifies libip[6]_mark.c into libxt_mark.cYasuyuki KOZAKAI2007-07-241-3/+3
|
* Unifies libip[6]t_multiport.c into libipxt_multiport.cYasuyuki KOZAKAI2007-07-241-1/+1
|
* Moves libipt_multiport.c to libxt_multiport.cYasuyuki KOZAKAI2007-07-241-2/+2
|
* Renames libipt_NOTRACK.c to libxt_NOTRACK.cYasuyuki KOZAKAI2007-07-241-1/+2
|
* Installs libxt_*.so to DEST_IPT_LIBIDR and link libip[6]t_*.so to it.Yasuyuki KOZAKAI2007-07-241-0/+26
|
* Introduces DEST_IPT_LIBDIR to simplify $(DESTDIR)$(LIBDIR)/iptablesYasuyuki KOZAKAI2007-07-241-8/+9
|
* PATCH: Add connlimit to iptables.Jan Engelhardt2007-07-091-2/+2
| | | | Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
* Add Jozsef's TRACE target.Patrick McHardy2007-06-251-2/+2
| | | | | Changed to be built unconditionally by myself since it doesn't need any headerfiles anyways.
* Forgot to add TCPMSS target to PF6_EXT_SLIBPatrick McHardy2007-02-131-1/+1
|
* Remove extensions for unmaintained/obsolete patchletsPatrick McHardy2007-01-101-2/+2
|
* Move extensions for pom patches to individual patchlets.Patrick McHardy2006-12-121-1/+1
|
* secmark: Add libip6t_CONNSECMARKJames Morris2006-05-241-1/+1
| | | | | | | This patch adds the shared library module for the CONNSECMARK target (IPv6). Signed-off-by: James Morris <jmorris@namei.org>
* secmark: Add libipt_CONNSECMARKJames Morris2006-05-241-1/+1
| | | | | | | This patch adds the shared library module for the CONNSECMARK target (IPv4). Signed-off-by: James Morris <jmorris@namei.org>
* secmark: Add libip6t_SECMARKJames Morris2006-05-241-1/+1
| | | | | | This patch adds the shared library module for the SECMARK target (IPv6). Signed-off-by: James Morris <jmorris@namei.org>
* secmark: Add libipt_SECMARKJames Morris2006-05-241-1/+1
| | | | | | This patch adds the shared library module for the SECMARK target (IPv4). Signed-off-by: James Morris <jmorris@namei.org>
* secmark: Add libselinux supportJames Morris2006-05-241-1/+14
| | | | | | | | | This patch adds the infrastructure for linking iptables against libselinux, for use with the SECMARK target. This is enabled by setting DO_SELINUX=1 in the build environment. Signed-off-by: James Morris <jmorris@namei.org>
* fix loading shared library of ICMPv6 match.Yasuyuki KOZAKAI2006-04-151-1/+1
| | | | | | | | | | | | | The current ip6tables tries to load libip6t_icmp6.so when user types 'ip6tables -p icmpv6 ...' or 'ip6tables ... -m icmpv6' ...', and it fails. This patch renames libip6t_icmpv6.c to libip6t_icmp6.c so that ip6tables can load it. Now kernel module and user library has same name 'icmp6'. It can reduce confusion about name mismatch. That's why I renamed it instead of reverting change in find_match() which brought this bug. This patch keeps compatibiity and we can use '-p icmpv6', '-p ipv6-icmpv6', '-m icmpv6', '-m ipv6-icmpv6', and '-m icmp6', as ever.
* Prepare policy match for x_tables unification by making sure bothPatrick McHardy2006-01-311-2/+2
| | | | ipt_policy and ip6t_policy use the same data structure.
* Add 'copy+paste' support for 'state' and 'connmark' match, as well asHarald Welte2006-01-261-1/+1
| | | | 'CONNMARK' target for ip6tables / nf_conntrack_l3proto_ipv6. This is a temporary solution for the iptables-1.3.x branch, since the 1.4.x branch will have proper support.
* add NFQUEUE support for ipv4 and ipv6Harald Welte2005-07-191-2/+2
|
* - add hashlimit to makefileHarald Welte2004-10-201-1/+1
| | | | - fix typo in libipt_hashlimit
* Add comment match extension (Brad Fisher)Brad Fisher2004-09-201-1/+1
|
* port physdev to ip6tables (Bart De Schuymer)Bart De Schuymer2004-09-121-1/+1
|
* Add addrtype match to list of unconditionally built extensionsPatrick McHardy2004-06-281-1/+1
|
* Semicolon were missing in the added assigment linesJoszef Kadlecsik2004-06-171-4/+4
|
* Fix for empty extra match/target man page list processingJoszef Kadlecsik2004-06-171-4/+8
|
* Fix missing 6 (Bjorn Mattsson)Martin Josefsson2004-04-071-1/+1
|
* add userspace part of SCTP matchHarald Welte2004-02-211-1/+1
|
* split manpages into per-extension manpage snippet (Henrik Nordstrom)Henrik Nordstrom2004-01-221-0/+75
| | | | add lots of missing manpage snippets (Harald Welte)
* unconditionally build libipt_connmark.so (Carlo Pires)Harald Welte2003-10-081-1/+1
|
* unconditionally build TRACE and NOTRACK pluginsHarald Welte2003-10-071-2/+2
|
* add include files for soon-to-be-submitted patches (and build them ↵Harald Welte2003-08-231-1/+1
| | | | unconditionally by putting thme in the extensions/Makefile)
* rename iplimit to connlimitHarald Welte2003-04-301-1/+1
|
* dont build ipv6 when DO_IPV6=0Harald Welte2003-03-051-1/+3
|