From: Amaury Denoyelle Date: Tue, 22 Mar 2022 15:42:10 +0000 (+0100) Subject: MINOR: mux-quic: complete trace when stream is not found X-Git-Tag: v2.6-dev4~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac74aa531d1d7620d8c1d1d5d626707841d07e52;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/src/mux_quic.c b/src/mux_quic.c index 9dc4c40de3..fa0207ea56 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; }