aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-02-01 11:00:55 +0000
committerHugo Landau <hlandau@openssl.org>2024-02-02 11:50:30 +0000
commitb58abf982218c704801d8a7b0f5725b730c94671 (patch)
tree73540a58ef9aa1da188709fe6283516038497a64 /include
parent5f603a12cd3bc0b7ea43889fabac2f728590497e (diff)
downloadopenssl-b58abf982218c704801d8a7b0f5725b730c94671.tar.gz
QUIC QLOG: Use set0
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_fifd.h2
-rw-r--r--include/internal/quic_record_tx.h2
-rw-r--r--include/internal/quic_txp.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/include/internal/quic_fifd.h b/include/internal/quic_fifd.h
index 606147c1db..0f5462c2a3 100644
--- a/include/internal/quic_fifd.h
+++ b/include/internal/quic_fifd.h
@@ -78,7 +78,7 @@ void ossl_quic_fifd_cleanup(QUIC_FIFD *fifd); /* (no-op) */
int ossl_quic_fifd_pkt_commit(QUIC_FIFD *fifd, QUIC_TXPIM_PKT *pkt);
-void ossl_quic_fifd_set_qlog(QUIC_FIFD *fifd, QLOG *qlog);
+void ossl_quic_fifd_set0_qlog(QUIC_FIFD *fifd, QLOG *qlog);
# endif
diff --git a/include/internal/quic_record_tx.h b/include/internal/quic_record_tx.h
index 18f7b23700..46f61a2e58 100644
--- a/include/internal/quic_record_tx.h
+++ b/include/internal/quic_record_tx.h
@@ -69,7 +69,7 @@ void ossl_qtx_set_msg_callback(OSSL_QTX *qtx, ossl_msg_cb msg_callback,
void ossl_qtx_set_msg_callback_arg(OSSL_QTX *qtx, void *msg_callback_arg);
/* Change QLOG instance in use after instantiation. */
-void ossl_qtx_set_qlog(OSSL_QTX *qtx, QLOG *qlog);
+void ossl_qtx_set0_qlog(OSSL_QTX *qtx, QLOG *qlog);
/*
* Secret Management
diff --git a/include/internal/quic_txp.h b/include/internal/quic_txp.h
index b1769b15e4..a6d38a2ba9 100644
--- a/include/internal/quic_txp.h
+++ b/include/internal/quic_txp.h
@@ -141,8 +141,8 @@ int ossl_quic_tx_packetiser_set_peer(OSSL_QUIC_TX_PACKETISER *txp,
/*
* Change the QLOG instance in use after instantiation.
*/
-void ossl_quic_tx_packetiser_set_qlog(OSSL_QUIC_TX_PACKETISER *txp,
- QLOG *qlog);
+void ossl_quic_tx_packetiser_set0_qlog(OSSL_QUIC_TX_PACKETISER *txp,
+ QLOG *qlog);
/*
* Inform the TX packetiser that an EL has been discarded. Idempotent.