make it possible to set VersionTLS to a draft version

Go doesn't allow duplicate cases in a switch statement.
This commit is contained in:
Marten Seemann 2020-10-29 15:04:55 +07:00
parent b034f1ac7c
commit 2839cbdcff
2 changed files with 11 additions and 9 deletions

View file

@ -34,15 +34,13 @@ const (
)
func versionToALPN(v protocol.VersionNumber) string {
//nolint:exhaustive
switch v {
case protocol.VersionTLS, protocol.VersionDraft29:
if v == protocol.VersionTLS || v == protocol.VersionDraft29 {
return nextProtoH3Draft29
case protocol.VersionDraft32:
return nextProtoH3Draft32
default:
return ""
}
if v == protocol.VersionDraft32 {
return nextProtoH3Draft32
}
return ""
}
// contextKey is a value for use with context.WithValue. It's used as