mirror of
https://github.com/openwrt/packages.git
synced 2026-01-11 04:04:50 +00:00
dns-over-https: Add dns-over-https.
Client and server software to query DNS over HTTPS, using Google DNS-over-HTTPS protocol and IETF DNS-over-HTTPS (RFC 8484). https://github.com/m13253/dns-over-https Signed-off-by: Martin Schneider <martschneider@google.com>
This commit is contained in:
committed by
Nick Hainke
parent
1589ebcede
commit
a1d3552445
21
net/dns-over-https/files/doh-client.init
Normal file
21
net/dns-over-https/files/doh-client.init
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
USE_PROCD=1
|
||||
|
||||
# starts before dnsmasq starts
|
||||
START=18
|
||||
# stops before networking stops
|
||||
STOP=89
|
||||
|
||||
PROG=/usr/sbin/doh-client
|
||||
CONFIGFILE=/etc/dns-over-https/doh-client.conf
|
||||
|
||||
start_service() {
|
||||
procd_open_instance
|
||||
procd_set_param command "$PROG" -conf "$CONFIGFILE"
|
||||
procd_set_param file "$CONFIGFILE"
|
||||
procd_set_param stdout 1
|
||||
procd_set_param stderr 1
|
||||
procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5}
|
||||
procd_close_instance
|
||||
}
|
||||
21
net/dns-over-https/files/doh-server.init
Normal file
21
net/dns-over-https/files/doh-server.init
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
USE_PROCD=1
|
||||
|
||||
# starts before dnsmasq starts
|
||||
START=18
|
||||
# stops before networking stops
|
||||
STOP=89
|
||||
|
||||
PROG=/usr/sbin/doh-server
|
||||
CONFIGFILE=/etc/dns-over-https/doh-server.conf
|
||||
|
||||
start_service() {
|
||||
procd_open_instance
|
||||
procd_set_param command "$PROG" -conf "$CONFIGFILE"
|
||||
procd_set_param file "$CONFIGFILE"
|
||||
procd_set_param stdout 1
|
||||
procd_set_param stderr 1
|
||||
procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5}
|
||||
procd_close_instance
|
||||
}
|
||||
Reference in New Issue
Block a user