From e16f0bd1e3f7ae9d942f6e48e8fae0e36f958207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Mon, 23 Aug 2021 09:50:29 +0200 Subject: [PATCH] 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. --- src/h3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/h3.c b/src/h3.c index 550f932b8..0993713f0 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; }