]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: h3: Missing connection argument for a TRACE_LEAVE() argument
authorFrédéric Lécaille <flecaille@haproxy.com>
Thu, 8 Sep 2022 14:04:55 +0000 (16:04 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Thu, 8 Sep 2022 16:04:58 +0000 (18:04 +0200)
This should help in debbuging issues to be able to associate this trace to a
QUIC connection.

Must be backported to 2.6.

src/h3.c

index f1cf4e15ebe4968567167fe6c94e55b435640a56..e42089d21320723af7b3a8e0718b5ad5a7b1f01f 100644 (file)
--- a/src/h3.c
+++ b/src/h3.c
@@ -605,7 +605,7 @@ static ssize_t h3_parse_settings_frm(struct h3c *h3c, const struct buffer *buf,
                }
        }
 
-       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;
 }