mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Repair Local DoH; should fix CI tests
This commit is contained in:
parent
12219c7490
commit
38cfa437db
1 changed files with 2 additions and 2 deletions
|
@ -191,7 +191,7 @@ func (proxy *Proxy) addLocalDoHListener(listenAddrStr string) {
|
|||
FileDescriptorNum++
|
||||
|
||||
dlog.Noticef("Now listening to https://%v%v [DoH]", listenAddrStr, proxy.localDoHPath)
|
||||
go proxy.localDoHListener(listenerTCP.(*net.TCPListener))
|
||||
proxy.localDoHListeners = append(proxy.localDoHListeners, listenerTCP.(*net.TCPListener))
|
||||
}
|
||||
|
||||
func (proxy *Proxy) StartProxy() {
|
||||
|
@ -319,7 +319,7 @@ func (proxy *Proxy) localDoHListenerFromAddr(listenAddr *net.TCPAddr) error {
|
|||
return err
|
||||
}
|
||||
dlog.Noticef("Now listening to https://%v%v [DoH]", listenAddr, proxy.localDoHPath)
|
||||
proxy.tcpListeners = append(proxy.localDoHListeners, acceptPc)
|
||||
proxy.localDoHListeners = append(proxy.localDoHListeners, acceptPc)
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue