mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
drop support for QUIC draft version 32 and 34
This commit is contained in:
parent
fa2e797215
commit
f51cc93770
12 changed files with 23 additions and 51 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue