From 677b99dca7101b04f765b249310ed5e2fa8587dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Tue, 21 Dec 2021 11:53:33 +0100 Subject: [PATCH] MINOR: quic: Add stream IDs to qcs_push_frame() traces This is only for debug purpose. --- src/mux_quic.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mux_quic.c b/src/mux_quic.c index 4886971bc7..e25ff256c9 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -283,7 +283,8 @@ static int qcs_push_frame(struct qcs *qcs, struct buffer *payload, int fin, uint MT_LIST_APPEND(&qel->pktns->tx.frms, &frm->mt_list); out: - fprintf(stderr, "%s: total=%d fin=%d offset=%lu\n", __func__, total, fin, offset); + fprintf(stderr, "%s: total=%d fin=%d id=%llu offset=%lu\n", + __func__, total, fin, (ull)qcs->by_id.key, offset); return total; err: