From a08e9aec1d0de813f1885e52dc8b1711ad803089 Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Wed, 29 Jan 2025 14:28:49 -0500 Subject: [PATCH] Move implementation of RETIRE CONN ID frames to QUIC FUTURE MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes openssl/project#1071 Reviewed-by: Matt Caswell Reviewed-by: Saša Nedvědický (Merged from https://github.com/openssl/openssl/pull/26593) --- ssl/quic/quic_rx_depack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/quic/quic_rx_depack.c b/ssl/quic/quic_rx_depack.c index d96a2b29522..43f276962ce 100644 --- a/ssl/quic/quic_rx_depack.c +++ b/ssl/quic/quic_rx_depack.c @@ -917,7 +917,7 @@ static int depack_do_frame_retire_conn_id(PACKET *pkt, * currently non-conformant and for internal testing use; simply handle it * as a no-op in this case. * - * TODO(QUIC SERVER): Revise and implement correctly for server support. + * TODO(QUIC FUTURE): Revise and implement correctly for server support. */ if (!ch->is_server) { ossl_quic_channel_raise_protocol_error(ch, -- 2.47.2