mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Revert "Update quic-go"
This reverts commit f9f68cf0a3
.
quic-go >= 1.0.35 panics
We may not be using the new API correctly.
This commit is contained in:
parent
f42b7dad17
commit
23a6cd7504
112 changed files with 2571 additions and 5590 deletions
|
@ -279,7 +279,7 @@ func (xTransport *XTransport) rebuildTransport() {
|
|||
ipOnly = "[" + cachedIP.String() + "]"
|
||||
}
|
||||
} else {
|
||||
dlog.Debugf("[%s] IP address was not cached in H3 context", host)
|
||||
dlog.Debugf("[%s] IP address was not cached in H3 DialContext", host)
|
||||
}
|
||||
addrStr = ipOnly + ":" + strconv.Itoa(port)
|
||||
udpAddr, err := net.ResolveUDPAddr("udp", addrStr)
|
||||
|
@ -292,8 +292,7 @@ func (xTransport *XTransport) rebuildTransport() {
|
|||
return nil, err
|
||||
}
|
||||
}
|
||||
tlsCfg.ServerName = host
|
||||
return quic.DialEarly(ctx, xTransport.h3UDPConn, udpAddr, tlsCfg, cfg)
|
||||
return quic.DialEarlyContext(ctx, xTransport.h3UDPConn, udpAddr, host, tlsCfg, cfg)
|
||||
}}
|
||||
xTransport.h3Transport = h3Transport
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue