From 2cca2417808cfc267e34d85f494681bdf83aa94f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Fri, 21 Jan 2022 13:55:03 +0100 Subject: [PATCH] MINOR: quic: Add QUIC_FT_RETIRE_CONNECTION_ID parsing case At this time, we do not do anything. This is only to prevent a packet from being parsed and to pass some test irrespective of the CIDs management. --- src/xprt_quic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 13fc2a15f..415f6993b 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c @@ -2444,6 +2444,8 @@ static int qc_parse_pkt_frms(struct quic_rx_packet *pkt, struct ssl_sock_ctx *ct case QUIC_FT_STREAMS_BLOCKED_UNI: break; case QUIC_FT_NEW_CONNECTION_ID: + case QUIC_FT_RETIRE_CONNECTION_ID: + /* XXX TO DO XXX */ break; case QUIC_FT_CONNECTION_CLOSE: case QUIC_FT_CONNECTION_CLOSE_APP: