diff options
author | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2019-08-16 10:05:12 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-09-04 13:39:57 +0200 |
commit | fcab45af13f9d479d66f42635877789260997cd6 (patch) | |
tree | ad4cb8cde5ce79064251cc825ba5358493837f2e /package/network/config/firewall/Makefile | |
parent | f783ad5b5b105407fd47123b02217a8a09525b44 (diff) | |
download | upstream-fcab45af13f9d479d66f42635877789260997cd6.tar.gz upstream-fcab45af13f9d479d66f42635877789260997cd6.tar.bz2 upstream-fcab45af13f9d479d66f42635877789260997cd6.zip |
firewall: improve ipset support
Bump to latest git HEAD
509e673 firewall3: Improve ipset support
The enabled option did not work properly for ipsets, as it was not
checked on create/destroy of a set. After this commit, sets are only
created/destroyed if enabled is set to true.
Add support for reloading, or recreating, ipsets on firewall reload. By
setting "reload_set" to true, the set will be destroyed and then
re-created when the firewall is reloaded.
Add support for the counters and comment extensions. By setting
"counters" or "comment" to true, then counters or comments are added to
the set.
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
(cherry picked from commit 51ffce069424f86e894369cee5cd327dd503db5f)
Diffstat (limited to 'package/network/config/firewall/Makefile')
-rw-r--r-- | package/network/config/firewall/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/network/config/firewall/Makefile b/package/network/config/firewall/Makefile index 9ae45f0db6..101e072ae2 100644 --- a/package/network/config/firewall/Makefile +++ b/package/network/config/firewall/Makefile @@ -9,13 +9,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=firewall -PKG_RELEASE:=2 +PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(PROJECT_GIT)/project/firewall3.git -PKG_SOURCE_DATE:=2019-06-12 -PKG_SOURCE_VERSION:=de9409762de14b5d909925c5db2e704ec13c754b -PKG_MIRROR_HASH:=291e390250c9bf5a997a62796afd0b1cf6a08f8a6d9b99fe3ecc49abf491455e +PKG_SOURCE_DATE:=2019-08-16 +PKG_SOURCE_VERSION:=509e673dab011851ed084ca592c557ee395fddd4 +PKG_MIRROR_HASH:=6c05803bbf6c74a9a90bc1e425a069695490d87a988599e4607d51d2c2acacbb PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io> PKG_LICENSE:=ISC |