From: Hugo Landau Date: Tue, 1 Nov 2022 14:38:07 +0000 (+0000) Subject: QUIC RXDP: Remove non-actionable TODOs X-Git-Tag: openssl-3.2.0-alpha1~1507 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27003aa6ebcb9f3a03c253dbd26fc152e1481fab;p=thirdparty%2Fopenssl.git QUIC RXDP: Remove non-actionable TODOs Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/19703) --- 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; }