From 70f3f44a0975ad84c96f6efa08f7ad47a39796eb Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Mon, 14 Aug 2023 09:36:01 +0700 Subject: [PATCH] http3: remove leftover ALPN constant for draft-29 (#4027) --- http3/server.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/http3/server.go b/http3/server.go index 728811c0..8d39f374 100644 --- a/http3/server.go +++ b/http3/server.go @@ -31,12 +31,8 @@ var ( } ) -const ( - // NextProtoH3Draft29 is the ALPN protocol negotiated during the TLS handshake, for QUIC draft 29. - NextProtoH3Draft29 = "h3-29" - // NextProtoH3 is the ALPN protocol negotiated during the TLS handshake, for QUIC v1 and v2. - NextProtoH3 = "h3" -) +// NextProtoH3 is the ALPN protocol negotiated during the TLS handshake, for QUIC v1 and v2. +const NextProtoH3 = "h3" // StreamType is the stream type of a unidirectional stream. type StreamType uint64