From 58b153b8824a12493ac9808403883db35496517a Mon Sep 17 00:00:00 2001 From: Frederic Lecaille Date: Tue, 2 Sep 2025 10:48:33 +0200 Subject: [PATCH] MINOR: quic: Add more information about RX packets This patch is very useful to debug issues at RX packet processing level. Should be easily backported as far as 2.6 (for debug purposes). --- src/quic_rx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_rx.c b/src/quic_rx.c index 3ec92f0ad..57cd7abbf 100644 --- a/src/quic_rx.c +++ b/src/quic_rx.c @@ -1533,7 +1533,7 @@ static int qc_try_rm_hp(struct quic_conn *qc, struct quic_rx_packet *pkt, ret = 1; out: - TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc); + TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, pkt); return ret; } -- 2.47.3