diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-09-08 14:58:41 +0200 |
---|---|---|
committer | Hugo Landau <hlandau@openssl.org> | 2024-02-02 12:49:34 +0100 |
commit | fff66adfc885c3d229333e28aa2cf225d3be098c (patch) | |
tree | b960b804b00e3f37f3ea8c798e9090e9eb86fdad /ssl/quic/quic_channel.c | |
parent | QLOG: Wiring: QUIC QTX (diff) | |
download | openssl-fff66adfc885c3d229333e28aa2cf225d3be098c.tar.xz openssl-fff66adfc885c3d229333e28aa2cf225d3be098c.zip |
QLOG: Events: Implement transport:packet_sent
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/quic/quic_channel.c')
-rw-r--r-- | ssl/quic/quic_channel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/quic/quic_channel.c b/ssl/quic/quic_channel.c index 0311e9a712..274765b731 100644 --- a/ssl/quic/quic_channel.c +++ b/ssl/quic/quic_channel.c @@ -171,6 +171,7 @@ static int ch_init(QUIC_CHANNEL *ch) /* We plug in a network write BIO to the QTX later when we get one. */ qtx_args.libctx = ch->port->engine->libctx; + qtx_args.qlog = ch_get_qlog(ch); qtx_args.mdpl = QUIC_MIN_INITIAL_DGRAM_LEN; ch->rx_max_udp_payload_size = qtx_args.mdpl; |