]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: h3: Send h3 settings asap
authorFrédéric Lécaille <flecaille@haproxy.com>
Mon, 23 Aug 2021 07:50:29 +0000 (09:50 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 23 Sep 2021 13:27:25 +0000 (15:27 +0200)
As it is possible to send Application level packets during the handshake,
let's send the h3 settings asaps.

src/h3.c

index 550f932b8c7ba83d3f246f348d618229bed5837f..0993713f02b13a82c65b656754fc9de277a9662a 100644 (file)
--- a/src/h3.c
+++ b/src/h3.c
@@ -411,7 +411,7 @@ static int h3_finalize(void *ctx)
                return 0;
 
        /* Wakeup ->lctrl uni-stream */
-       tasklet_wakeup(h3->lctrl.wait_event.tasklet);
+       h3_control_send(&h3->lctrl, h3);
 
        return 1;
 }