From 09f5501bb9a9652d06c5b2b1b87973cdcb8a3c6b Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Fri, 25 Apr 2025 13:03:29 +0200 Subject: [PATCH] MEDIUM: quic: Make sure we return the tasklet from quic_accept_run In quic_accept_run, return the tasklet to tell the scheduler the tasklet is still alive, it is not yet needed, but will be soon. --- src/quic_sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_sock.c b/src/quic_sock.c index 1da0743f1..7af0bad54 100644 --- a/src/quic_sock.c +++ b/src/quic_sock.c @@ -1113,7 +1113,7 @@ struct task *quic_accept_run(struct task *t, void *ctx, unsigned int i) } } - return NULL; + return t; } /* Returns the maximum number of QUIC connections waiting for handshake to