diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-07-19 16:30:47 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2014-07-19 16:30:47 +0000 |
commit | 4f68894215394df5d3bfa4f67f63769f373ebd75 (patch) | |
tree | c87249af55c769667865c3e6c585e6e503801b1e | |
parent | 8db41bafaba75b7357fd1f1382e7da9f46b3a753 (diff) | |
download | master-187ad058-4f68894215394df5d3bfa4f67f63769f373ebd75.tar.gz master-187ad058-4f68894215394df5d3bfa4f67f63769f373ebd75.tar.bz2 master-187ad058-4f68894215394df5d3bfa4f67f63769f373ebd75.zip |
firewall: implement support for abritary netmasks
Properly parse and pass arbritary netmasks to iptables, this allows
specifying ranges like '::c23f:eff:fe7a:a094/::ffff:ffff:ffff:ffff' to
match the host part of an IPv6 address regardless of the currently active
IPv6 prefix.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41760 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/network/config/firewall/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/network/config/firewall/Makefile b/package/network/config/firewall/Makefile index 2d4599037f..41c9f42abb 100644 --- a/package/network/config/firewall/Makefile +++ b/package/network/config/firewall/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=firewall -PKG_VERSION:=2014-07-10a +PKG_VERSION:=2014-07-19 PKG_RELEASE:=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/firewall3.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=0aaf63b89efb27bfa370aabc7550de10335abbe3 +PKG_SOURCE_VERSION:=8dd290b85ee8d57026581891e9a34945d077fa3b PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org> |