summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-11-01 14:38:07 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-13 13:20:14 +0000
commit27003aa6ebcb9f3a03c253dbd26fc152e1481fab (patch)
tree7ef616116b9f7b76cc4d82a7095057f4d10003df
parentc572bed9f56b48937f58e75cf8132696ba19a6ad (diff)
QUIC RXDP: Remove non-actionable TODOs
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19703)
-rw-r--r--ssl/quic/quic_rx_depack.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/ssl/quic/quic_rx_depack.c b/ssl/quic/quic_rx_depack.c
index 2c189f20b7..0b00cac637 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;
}