mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
close the h2quic.RoundTripper in the example client
While it's not necessary, it's best practice to close the RoundTripper. That way, QUIC can do a proper connection shutdown.
This commit is contained in:
parent
ad3fbd3a01
commit
3e9c8317db
1 changed files with 5 additions and 3 deletions
|
@ -31,10 +31,12 @@ func main() {
|
||||||
versions = append([]protocol.VersionNumber{protocol.VersionTLS}, versions...)
|
versions = append([]protocol.VersionNumber{protocol.VersionTLS}, versions...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
roundTripper := &h2quic.RoundTripper{
|
||||||
|
QuicConfig: &quic.Config{Versions: versions},
|
||||||
|
}
|
||||||
|
defer roundTripper.Close()
|
||||||
hclient := &http.Client{
|
hclient := &http.Client{
|
||||||
Transport: &h2quic.RoundTripper{
|
Transport: roundTripper,
|
||||||
QuicConfig: &quic.Config{Versions: versions},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue