summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2023-05-05 14:46:01 +0100
committerMatt Caswell <matt@openssl.org>2023-05-24 12:18:33 +0100
commit45454cccf8172b5a2d7c1342067a1d8dc8396fc9 (patch)
tree094f5542b8ae38178f5b63df7f6aef9081249c7d /include
parent70f0ea280af0bed9fb48b20b61c7a12c7f03e6d9 (diff)
Extend tracing of frames to transmitted frames
Previously we were only doing tracing of frames received from the peer. Now we do that for transmitted frames as well. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20914)
Diffstat (limited to 'include')
-rw-r--r--include/internal/quic_txp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/internal/quic_txp.h b/include/internal/quic_txp.h
index 0e4fd5cc49..54c25754eb 100644
--- a/include/internal/quic_txp.h
+++ b/include/internal/quic_txp.h
@@ -49,6 +49,11 @@ typedef struct ossl_quic_tx_packetiser_args_st {
OSSL_TIME (*now)(void *arg); /* Callback to get current time. */
void *now_arg;
+ /* Message callback related arguments */
+ ossl_msg_cb msg_callback;
+ void *msg_callback_arg;
+ SSL *msg_callback_s;
+
/*
* Injected dependencies - crypto streams.
*