mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Added DNS-over-HTTP support, without TLS.
Triggers when TLS certificate and key are empty.
This commit is contained in:
parent
4ed02b02df
commit
2a283a80a1
1 changed files with 8 additions and 4 deletions
|
@ -98,16 +98,20 @@ func (handler localDoHHandler) ServeHTTP(writer http.ResponseWriter, request *ht
|
|||
|
||||
func (proxy *Proxy) localDoHListener(acceptPc *net.TCPListener) {
|
||||
defer acceptPc.Close()
|
||||
if len(proxy.localDoHCertFile) == 0 || len(proxy.localDoHCertKeyFile) == 0 {
|
||||
dlog.Fatal("A certificate and a key are required to start a local DoH service")
|
||||
}
|
||||
noTls := len(proxy.localDoHCertFile) == 0 && len(proxy.localDoHCertKeyFile) == 0
|
||||
httpServer := &http.Server{
|
||||
ReadTimeout: proxy.timeout,
|
||||
WriteTimeout: proxy.timeout,
|
||||
Handler: localDoHHandler{proxy: proxy},
|
||||
}
|
||||
httpServer.SetKeepAlivesEnabled(true)
|
||||
if err := httpServer.ServeTLS(acceptPc, proxy.localDoHCertFile, proxy.localDoHCertKeyFile); err != nil {
|
||||
var err error
|
||||
if noTls {
|
||||
err = httpServer.Serve(acceptPc)
|
||||
} else {
|
||||
err = httpServer.ServeTLS(acceptPc, proxy.localDoHCertFile, proxy.localDoHCertKeyFile)
|
||||
}
|
||||
if err != nil {
|
||||
dlog.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue