From 27003aa6ebcb9f3a03c253dbd26fc152e1481fab Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Tue, 1 Nov 2022 14:38:07 +0000 Subject: [PATCH] QUIC RXDP: Remove non-actionable TODOs Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/19703) --- ssl/quic/quic_rx_depack.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ssl/quic/quic_rx_depack.c b/ssl/quic/quic_rx_depack.c index 2c189f20b71..0b00cac637d 100644 --- a/ssl/quic/quic_rx_depack.c +++ b/ssl/quic/quic_rx_depack.c @@ -333,8 +333,7 @@ static int depack_do_frame_max_data(PACKET *pkt, QUIC_CONNECTION *connection, /* This frame makes the packet ACK eliciting */ ackm_data->is_ack_eliciting = 1; - /* TODO(QUIC): ADD CODE to send |max_data| to flow control */ - + /* No-op - informative/debugging frame. */ return 1; } @@ -386,8 +385,7 @@ static int depack_do_frame_data_blocked(PACKET *pkt, /* This frame makes the packet ACK eliciting */ ackm_data->is_ack_eliciting = 1; - /* TODO(QUIC): ADD CODE to send |max_data| to flow control */ - + /* No-op - informative/debugging frame. */ return 1; } @@ -422,8 +420,7 @@ static int depack_do_frame_streams_blocked(PACKET *pkt, /* This frame makes the packet ACK eliciting */ ackm_data->is_ack_eliciting = 1; - /* TODO(QUIC): ADD CODE to send |max_data| to connection manager */ - + /* No-op - informative/debugging frame. */ return 1; } -- 2.47.2