aboutsummaryrefslogtreecommitdiff
path: root/net/https-dns-proxy
diff options
context:
space:
mode:
authorJemy Zhang <jemy.zhang@gmail.com>2018-03-07 17:22:19 +0800
committerJemy Zhang <jemy.zhang@gmail.com>2018-03-07 17:26:56 +0800
commit1831d97cf10196fe3b4c174f54b508efb4e76b28 (patch)
tree2f983d047dc435e937cfea68d614299378782ed3 /net/https-dns-proxy
parentcba7023cf228bd48c3077cddaf7a976789491e5d (diff)
net/https-dns-proxy: Update to 2018-01-28
+ initial DNS resolve via proxy + option of subnet address + option of proxy server Signed-off-by: Jemy Zhang <jemy.zhang@gmail.com>
Diffstat (limited to 'net/https-dns-proxy')
-rw-r--r--net/https-dns-proxy/Makefile6
-rw-r--r--net/https-dns-proxy/files/https_dns_proxy.config2
-rw-r--r--net/https-dns-proxy/files/https_dns_proxy.init12
3 files changed, 16 insertions, 4 deletions
diff --git a/net/https-dns-proxy/Makefile b/net/https-dns-proxy/Makefile
index daecceba7..3bc8f9f8e 100644
--- a/net/https-dns-proxy/Makefile
+++ b/net/https-dns-proxy/Makefile
@@ -1,15 +1,15 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=https_dns_proxy
-PKG_VERSION:=2018-01-24
+PKG_VERSION:=2018-01-28
PKG_RELEASE=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
-PKG_MIRROR_HASH:=0eef98106c584b986117f33458e8d1e2447a8b6eb12a2e3bfc5df06d45114144
+PKG_MIRROR_HASH:=627f468230a02d8c36915978cc4dce9f1458590aa30e2df723d59cb860acb192
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_URL:=https://github.com/aarond10/https_dns_proxy/
PKG_SOURCE_PROTO:=git
-PKG_SOURCE_VERSION:=f08b51d7c07c0156794e2c23d7a4d1a5344b2e07
+PKG_SOURCE_VERSION:=843b768f0cd3aa6fa5aed4fa992776657bc18d14
PKG_MAINTAINER:=Aaron Drew <aarond10@gmail.com>
PKG_LICENSE:=MIT
diff --git a/net/https-dns-proxy/files/https_dns_proxy.config b/net/https-dns-proxy/files/https_dns_proxy.config
index 17f355738..7f5aaa669 100644
--- a/net/https-dns-proxy/files/https_dns_proxy.config
+++ b/net/https-dns-proxy/files/https_dns_proxy.config
@@ -3,3 +3,5 @@ config https_dns_proxy
option listen_port '5053'
option user 'nobody'
option group 'nogroup'
+ option subnet_addr ''
+ option proxy_server ''
diff --git a/net/https-dns-proxy/files/https_dns_proxy.init b/net/https-dns-proxy/files/https_dns_proxy.init
index 333f3cac3..29bd71ed7 100644
--- a/net/https-dns-proxy/files/https_dns_proxy.init
+++ b/net/https-dns-proxy/files/https_dns_proxy.init
@@ -13,11 +13,21 @@ start_instance() {
config_get listen_port "$cfg" listen_port
config_get user "$cfg" user
config_get group "$cfg" group
+ config_get subnet_addr "$cfg" subnet_addr
+ config_get proxy_server "$cfg" proxy_server
+
+ if [ -n "$subnet_addr" ]; then
+ subnet_param="-e $subnet_addr"
+ fi
+
+ if [ -n "$proxy_server" ]; then
+ proxy_param="-t $proxy_server"
+ fi
procd_open_instance
procd_set_param command ${PROG} \
-a "$listen_addr" -p "$listen_port" \
- -u "$user" -g "$group"
+ -u "$user" -g "$group" $subnet_param $proxy_param
procd_set_param respawn
procd_close_instance
}