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.
This commit is contained in:
Amaury Denoyelle 2022-03-22 16:42:10 +01:00
parent 1b4ebcb041
commit ac74aa531d

View File

@ -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;
}