diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-05-26 15:48:04 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-05-26 15:48:04 +0000 |
commit | bebdc6222a4b4fc381e21169870ac177ac4d5341 (patch) | |
tree | 467e5f0ede30f9258ab5a80e64b02d14bc4d9e3b | |
parent | 2427e3c873d710dc7877495a0c823066fb831bf3 (diff) | |
download | upstream-bebdc6222a4b4fc381e21169870ac177ac4d5341.tar.gz upstream-bebdc6222a4b4fc381e21169870ac177ac4d5341.tar.bz2 upstream-bebdc6222a4b4fc381e21169870ac177ac4d5341.zip |
firewall3: update to git head
- allows symbolic notation for src_ip, src_dip and dest_ip options, e.g. option src_ip 'lan' to automatically resolve to "192.168.1.0/24"
- automatically infer destination zone for redirects from target ip, this makes 'dest' optional and nat reflection setup more robust
- properly support output rules with dest '*' to hook directly into delegate_output
- fixes crash when processing rules with unresolved targets
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36721 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/network/config/firewall3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/network/config/firewall3/Makefile b/package/network/config/firewall3/Makefile index b54c98acba..8b03958f7a 100644 --- a/package/network/config/firewall3/Makefile +++ b/package/network/config/firewall3/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=firewall3 -PKG_VERSION:=2013-05-24 +PKG_VERSION:=2013-05-26 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:=4ecfb8f6fe4920fd1c6904b1ca8730e746111b00 +PKG_SOURCE_VERSION:=d2a8a3f6a29746a3a07d2e3415737bcc2241afce PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org> |