diff options
author | Jo-Philipp Wich <jo@mein.io> | 2016-05-02 18:46:23 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2016-05-02 18:46:30 +0100 |
commit | 4076d863bdb657effd9b6d83286110b6bda23a14 (patch) | |
tree | 7165d669d5af526786324c4c11865ef98ef06c0d | |
parent | a2b555189b2cc051bf706eae3ba2b08d094f63c0 (diff) | |
download | upstream-4076d863bdb657effd9b6d83286110b6bda23a14.tar.gz upstream-4076d863bdb657effd9b6d83286110b6bda23a14.tar.bz2 upstream-4076d863bdb657effd9b6d83286110b6bda23a14.zip |
firewall3: fix mark rules for local traffic, fix race condition
Update to latest HEAD in order to fix MARK rule generation for local traffic,
also fix a possible race condition during firewall start.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r-- | package/network/config/firewall/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/network/config/firewall/Makefile b/package/network/config/firewall/Makefile index 73dae29468..ffce0c37bf 100644 --- a/package/network/config/firewall/Makefile +++ b/package/network/config/firewall/Makefile @@ -1,5 +1,6 @@ # # Copyright (C) 2013-2016 OpenWrt.org +# Copyright (C) 2016 LEDE project # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,15 +9,15 @@ include $(TOPDIR)/rules.mk PKG_NAME:=firewall -PKG_VERSION:=2016-01-29 +PKG_VERSION:=2016-05-02 PKG_RELEASE:=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(OPENWRT_GIT)/project/firewall3.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=8957be6c026858fe414aef69281d8aa06f7ea122 +PKG_SOURCE_VERSION:=6cccf1ba7f0c3eb34ef4a7adc6af501376bfa875 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz -PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org> +PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io> PKG_LICENSE:=ISC PKG_CONFIG_DEPENDS := CONFIG_IPV6 |