make it possible to configure the QUIC versions for the server

This commit is contained in:
Marten Seemann 2017-04-28 17:54:02 +07:00
parent cc2dc2aded
commit b305cd674f
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
16 changed files with 133 additions and 112 deletions

View file

@ -63,6 +63,10 @@ type Config struct {
// If this field is not set, the Dial functions will return only when the connection is forward secure.
// Callbacks have to be thread-safe, since they might be called in separate goroutines.
ConnState ConnStateCallback
// The QUIC versions that can be negotiated.
// If not set, it uses all versions available.
// Warning: This API should not be considered stable and will change soon.
Versions []protocol.VersionNumber
}
// A Listener for incoming QUIC connections