diff --git a/dnscrypt-proxy/xtransport.go b/dnscrypt-proxy/xtransport.go index 0bd1b93c..7652566f 100644 --- a/dnscrypt-proxy/xtransport.go +++ b/dnscrypt-proxy/xtransport.go @@ -57,7 +57,7 @@ type AltSupport struct { type XTransport struct { transport *http.Transport - h3Transport *http3.RoundTripper + h3Transport *http3.Transport keepAlive time.Duration timeout time.Duration cachedIPs CachedIPs @@ -311,7 +311,7 @@ func (xTransport *XTransport) rebuildTransport() { tlsCfg.ServerName = host return quic.DialEarly(ctx, udpConn, udpAddr, tlsCfg, cfg) } - h3Transport := &http3.RoundTripper{DisableCompression: true, TLSClientConfig: &tlsClientConfig, Dial: dial} + h3Transport := &http3.Transport{DisableCompression: true, TLSClientConfig: &tlsClientConfig, Dial: dial} xTransport.h3Transport = h3Transport } }