Added DNS-over-HTTP support, without TLS.

Triggers when TLS certificate and key are empty.
This commit is contained in:
lch361 2024-11-24 17:20:12 +03:00
parent 4ed02b02df
commit 2a283a80a1

View file

@ -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)
}
}