From: Frédéric Lécaille Date: Mon, 23 Aug 2021 07:50:29 +0000 (+0200) Subject: MINOR: h3: Send h3 settings asap X-Git-Tag: v2.5-dev8~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e16f0bd1e3f7ae9d942f6e48e8fae0e36f958207;p=thirdparty%2Fhaproxy.git MINOR: h3: Send h3 settings asap As it is possible to send Application level packets during the handshake, let's send the h3 settings asaps. --- diff --git a/src/h3.c b/src/h3.c index 550f932b8c..0993713f02 100644 --- 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; }