drop support for QUIC draft version 32 and 34

This commit is contained in:
Marten Seemann 2021-06-27 17:07:42 -07:00
parent fa2e797215
commit f51cc93770
12 changed files with 23 additions and 51 deletions

View file

@ -31,8 +31,6 @@ var (
const (
nextProtoH3Draft29 = "h3-29"
nextProtoH3Draft32 = "h3-32"
nextProtoH3Draft34 = "h3-34"
nextProtoH3 = "h3"
)
@ -50,12 +48,6 @@ func versionToALPN(v protocol.VersionNumber) string {
if v == protocol.VersionTLS || v == protocol.VersionDraft29 {
return nextProtoH3Draft29
}
if v == protocol.VersionDraft32 {
return nextProtoH3Draft32
}
if v == protocol.VersionDraft34 {
return nextProtoH3Draft34
}
return ""
}
@ -159,13 +151,7 @@ func (s *Server) serveImpl(tlsConf *tls.Config, conn net.PacketConn) error {
// determine the ALPN from the QUIC version used
proto := nextProtoH3Draft29
if qconn, ok := ch.Conn.(handshake.ConnWithVersion); ok {
//nolint:exhaustive
switch qconn.GetQUICVersion() {
case quic.VersionDraft32:
proto = nextProtoH3Draft32
case protocol.VersionDraft34:
proto = nextProtoH3Draft34
case protocol.Version1:
if qconn.GetQUICVersion() == protocol.Version1 {
proto = nextProtoH3
}
}