summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_ackm.c
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-07-24 18:05:47 +0200
committerTomas Mraz <tomas@openssl.org>2023-08-08 15:58:59 +0200
commit44cb36d04adb737be1aee32908232003deeb67dd (patch)
treef1fe8280f92f99a4316db58b3c3b6de628d16110 /ssl/quic/quic_ackm.c
parenta2ca189e273584a7af3fcb90d893df9439e96659 (diff)
Resolve some of the TODO(QUIC) items
For some of the items we add FUTURE/SERVER/TESTING/MULTIPATH designation to indicate these do not need to be resolved in QUIC MVP release. Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21539)
Diffstat (limited to 'ssl/quic/quic_ackm.c')
-rw-r--r--ssl/quic/quic_ackm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ssl/quic/quic_ackm.c b/ssl/quic/quic_ackm.c
index 9e22bf2fc0..7c567eae77 100644
--- a/ssl/quic/quic_ackm.c
+++ b/ssl/quic/quic_ackm.c
@@ -927,7 +927,7 @@ static int ackm_set_loss_detection_timer(OSSL_ACKM *ackm)
static int ackm_in_persistent_congestion(OSSL_ACKM *ackm,
const OSSL_ACKM_TX_PKT *lpkt)
{
- /* TODO(QUIC): Persistent congestion not currently implemented. */
+ /* TODO(QUIC FUTURE): Persistent congestion not currently implemented. */
return 0;
}
@@ -1284,7 +1284,8 @@ static void ackm_queue_probe_anti_deadlock_initial(OSSL_ACKM *ackm)
static void ackm_queue_probe(OSSL_ACKM *ackm, int pkt_space)
{
/*
- * TODO(QUIC): We are allowed to send either one or two probe packets here.
+ * TODO(QUIC FUTURE): We are allowed to send either one or two probe
+ * packets here.
* Determine a strategy for when we should send two probe packets.
*/
++ackm->pending_probe.pto[pkt_space];