mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
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:
parent
b034f1ac7c
commit
2839cbdcff
2 changed files with 11 additions and 9 deletions
http3
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue