diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2019-02-20 18:09:50 +0100 |
---|---|---|
committer | Alexander Couzens <lynxis@fe80.eu> | 2019-02-24 01:48:25 +0100 |
commit | b7f2adbdd3ed76e9c844b99d0171c9bfe5809cba (patch) | |
tree | f82a98a07e42db59c3b0a3195465f257bf8c87ff /package/network/services/dnsmasq/Makefile | |
parent | 77a54bbf13bf2a798cfdfc8dd6c61759ac18a19f (diff) | |
download | upstream-b7f2adbdd3ed76e9c844b99d0171c9bfe5809cba.tar.gz upstream-b7f2adbdd3ed76e9c844b99d0171c9bfe5809cba.tar.bz2 upstream-b7f2adbdd3ed76e9c844b99d0171c9bfe5809cba.zip |
package/dnsmasq: add max_ttl/min_cache_ttl/max_cache_ttl
max_ttl - limit the ttl in the dns answer if greater as $max_ttl
min_cache_ttl - force caching of dns answers even the ttl in the answer
is lower than the $min_cache_ttl
max_cache_ttl - cache only dns answer for $max_cache_ttl.
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to 'package/network/services/dnsmasq/Makefile')
-rw-r--r-- | package/network/services/dnsmasq/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index 8c8427f6c1..1710ded5f8 100644 --- a/package/network/services/dnsmasq/Makefile +++ b/package/network/services/dnsmasq/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dnsmasq PKG_UPSTREAM_VERSION:=2.80 PKG_VERSION:=$(subst test,~~test,$(subst rc,~rc,$(PKG_UPSTREAM_VERSION))) -PKG_RELEASE:=10 +PKG_RELEASE:=11 PKG_SOURCE:=$(PKG_NAME)-$(PKG_UPSTREAM_VERSION).tar.xz PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq |