summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-01-29 12:36:11 +0000
committerHugo Landau <hlandau@openssl.org>2024-02-02 11:50:29 +0000
commit572c449a10697d8424a6117df807700a688d753d (patch)
treed7b963e358338f0caf41c0b0968199281ae82536 /include
parent4a3a9257db012adbfbc7b854f18dc00fad23c6c4 (diff)
QUIC TXP: Allow QLOG instance to be changed after instantiation
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22037)
Diffstat (limited to 'include')
-rw-r--r--include/internal/quic_txp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/internal/quic_txp.h b/include/internal/quic_txp.h
index 6f1debb1d9..b1769b15e4 100644
--- a/include/internal/quic_txp.h
+++ b/include/internal/quic_txp.h
@@ -139,6 +139,12 @@ int ossl_quic_tx_packetiser_set_peer(OSSL_QUIC_TX_PACKETISER *txp,
const BIO_ADDR *peer);
/*
+ * Change the QLOG instance in use after instantiation.
+ */
+void ossl_quic_tx_packetiser_set_qlog(OSSL_QUIC_TX_PACKETISER *txp,
+ QLOG *qlog);
+
+/*
* Inform the TX packetiser that an EL has been discarded. Idempotent.
*
* This does not inform the QTX as well; the caller must also inform the QTX.