mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
only allow the HTTP/3 client to dial with a single QUIC version
This commit is contained in:
parent
30c91149c2
commit
898f484d0a
3 changed files with 54 additions and 24 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue