Skip to content

Commit

Permalink
QUIC RXDP: Remove non-actionable TODOs
Browse files Browse the repository at this point in the history
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from #19703)
  • Loading branch information
hlandau committed Jan 13, 2023
1 parent c572bed commit 27003aa
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions ssl/quic/quic_rx_depack.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit 27003aa

Please sign in to comment.