summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-01-29 12:34:54 +0000
committerHugo Landau <hlandau@openssl.org>2024-02-02 11:50:29 +0000
commit484b8bd0f550da8728000dc4c9e36cb273296f73 (patch)
tree0fa1a6c817c5c6434b6ff52dddb9387c8f33f99a /ssl
parentba8b093be78a0822e0f55335b9c4fd31265b2f22 (diff)
QUIC FIFD: 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 'ssl')
-rw-r--r--ssl/quic/quic_fifd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ssl/quic/quic_fifd.c b/ssl/quic/quic_fifd.c
index acd836eff3..fc268c5420 100644
--- a/ssl/quic/quic_fifd.c
+++ b/ssl/quic/quic_fifd.c
@@ -293,3 +293,8 @@ int ossl_quic_fifd_pkt_commit(QUIC_FIFD *fifd, QUIC_TXPIM_PKT *pkt)
/* Inform the ACKM. */
return ossl_ackm_on_tx_packet(fifd->ackm, &pkt->ackm_pkt);
}
+
+void ossl_quic_fifd_set_qlog(QUIC_FIFD *fifd, QLOG *qlog)
+{
+ fifd->qlog = qlog;
+}