]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC RXDP: Remove non-actionable TODOs
authorHugo Landau <hlandau@openssl.org>
Tue, 1 Nov 2022 14:38:07 +0000 (14:38 +0000)
committerHugo Landau <hlandau@openssl.org>
Fri, 13 Jan 2023 13:20:14 +0000 (13:20 +0000)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19703)

ssl/quic/quic_rx_depack.c

index 2c189f20b71d1f83bb5592c892a73b2d26e19a6b..0b00cac637dd6c3f6fc9a27b95ab524f3b28d108 100644 (file)
@@ -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;
 }