only allow the HTTP/3 client to dial with a single QUIC version

This commit is contained in:
Marten Seemann 2020-10-29 15:36:00 +07:00
parent 30c91149c2
commit 898f484d0a
3 changed files with 54 additions and 24 deletions

View file

@ -130,7 +130,8 @@ func (r *RoundTripper) getClient(hostname string, onlyCached bool) (http.RoundTr
if onlyCached {
return nil, ErrNoCachedConn
}
client = newClient(
var err error
client, err = newClient(
hostname,
r.TLSClientConfig,
&roundTripperOpts{
@ -140,6 +141,9 @@ func (r *RoundTripper) getClient(hostname string, onlyCached bool) (http.RoundTr
r.QuicConfig,
r.Dial,
)
if err != nil {
return nil, err
}
r.clients[hostname] = client
}
return client, nil