From ac74aa531d1d7620d8c1d1d5d626707841d07e52 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Tue, 22 Mar 2022 16:42:10 +0100 Subject: [PATCH] MINOR: mux-quic: complete trace when stream is not found Display the ID of the stream not found. This will help to detect when we received retransmitted frames for an already closed stream. --- src/mux_quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mux_quic.c b/src/mux_quic.c index 9dc4c40de..fa0207ea5 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -197,7 +197,7 @@ int qcc_recv(struct qcc *qcc, uint64_t id, uint64_t len, uint64_t offset, strm_node = qcc_get_qcs(qcc, id); if (!strm_node) { - fprintf(stderr, "%s: stream not found\n", __func__); + fprintf(stderr, "%s: stream not found: %ld\n", __func__, id); return 1; }