commit | befcf7031d79298ab68c0d19ba77fa991aa9f024 | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Thu Sep 08 16:04:55 2022 +0200 |
committer | Frédéric Lécaille <flecaille@haproxy.com> | Thu Sep 08 18:04:58 2022 +0200 |
tree | a9ea0948bfe209f343a364e49a36d22198ab26d2 | |
parent | 2eb5faa2ad734c2c65186da2533732163ead5d43 [diff] |
MINOR: h3: Missing connection argument for a TRACE_LEAVE() argument This should help in debbuging issues to be able to associate this trace to a QUIC connection. Must be backported to 2.6.
diff --git a/src/h3.c b/src/h3.c index f1cf4e1..e42089d 100644 --- a/src/h3.c +++ b/src/h3.c
@@ -605,7 +605,7 @@ } } - TRACE_LEAVE(H3_EV_RX_FRAME|H3_EV_RX_SETTINGS); + TRACE_LEAVE(H3_EV_RX_FRAME|H3_EV_RX_SETTINGS, h3c->qcc->conn); return ret; }