summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-01-26 13:30:38 +0000
committerTomas Mraz <tomas@openssl.org>2023-01-30 09:44:59 +0100
commit2477e99f1055194902dc4864124316ea57ac3efa (patch)
tree529419a7af83aa1a402c6c437ef408aa42f60d64 /include
parentfee8f48e35f7009065227ae76c50672632ea5c40 (diff)
QUIC Probes Support: Minor tweaks
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19925)
Diffstat (limited to 'include')
-rw-r--r--include/internal/quic_ackm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/internal/quic_ackm.h b/include/internal/quic_ackm.h
index 4bdf15ff1e..1fedc08769 100644
--- a/include/internal/quic_ackm.h
+++ b/include/internal/quic_ackm.h
@@ -232,7 +232,7 @@ typedef struct ossl_ackm_probe_info_st {
* have been generated by the ACKM. The fields in the structure are incremented
* by one every time the ACKM wants another probe of the given type to be sent.
* If the ACKM thinks two packets should be generated for a probe, it will
- * increment the field twice (TODO).
+ * increment the field twice.
*
* It is permissible for the caller to decrement or zero these fields to keep
* track of when it has generated a probe as asked. The returned structure
@@ -241,7 +241,7 @@ typedef struct ossl_ackm_probe_info_st {
* This function should be called after calling e.g. ossl_ackm_on_timeout
* to determine if any probe requests have been generated.
*/
-OSSL_ACKM_PROBE_INFO *ossl_ackm_get_probe_request(OSSL_ACKM *ackm);
+OSSL_ACKM_PROBE_INFO *ossl_ackm_get0_probe_request(OSSL_ACKM *ackm);
int ossl_ackm_get_largest_unacked(OSSL_ACKM *ackm, int pkt_space, QUIC_PN *pn);