mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
Enable tracing of datagrams we have sent
Extend the tracing capability to also trace when we have a datagram to the peer. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20914)
This commit is contained in:
parent
e8528c95a0
commit
8aff8f89f7
@ -910,8 +910,14 @@ int ossl_qtx_flush_net(OSSL_QTX *qtx)
|
|||||||
/*
|
/*
|
||||||
* Remove everything which was successfully sent from the pending queue.
|
* Remove everything which was successfully sent from the pending queue.
|
||||||
*/
|
*/
|
||||||
for (i = 0; i < wr; ++i)
|
for (i = 0; i < wr; ++i) {
|
||||||
|
if (qtx->msg_callback != NULL)
|
||||||
|
qtx->msg_callback(1, OSSL_QUIC1_VERSION, SSL3_RT_QUIC_DATAGRAM,
|
||||||
|
msg[i].data, msg[i].data_len,
|
||||||
|
qtx->msg_callback_s,
|
||||||
|
qtx->msg_callback_arg);
|
||||||
qtx_pending_to_free(qtx);
|
qtx_pending_to_free(qtx);
|
||||||
|
}
|
||||||
|
|
||||||
total_written += wr;
|
total_written += wr;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user