attach the QUIC version to context returned by ClientHelloInfo.Context (#3721)

This commit is contained in:
Marten Seemann 2023-03-27 00:26:14 +11:00 committed by GitHub
parent 11f493381f
commit 41ddaa0262
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 106 additions and 176 deletions

View file

@ -57,6 +57,10 @@ var ConnectionTracingKey = connTracingCtxKey{}
type connTracingCtxKey struct{}
// QUICVersionContextKey can be used to find out the QUIC version of a TLS handshake from the
// context returned by tls.Config.ClientHelloInfo.Context.
var QUICVersionContextKey = handshake.QUICVersionContextKey
// Stream is the interface implemented by QUIC streams
// In addition to the errors listed on the Connection,
// calls to stream functions can return a StreamError if the stream is canceled.