BUG/MINOR: mux-quic: Missing I/O handler events initialization
This could lead to a mux erratic behavior. Sometimes the application layer could
not wakeup the mux I/O handler because it estimated it had already subscribed
to write events (see h3_snd_buf() end of implementation).
diff --git a/src/mux_quic.c b/src/mux_quic.c
index 9d85c8a..87be58c 100644
--- a/src/mux_quic.c
+++ b/src/mux_quic.c
@@ -745,6 +745,7 @@
qcc->subs = NULL;
qcc->wait_event.tasklet->process = qc_io_cb;
qcc->wait_event.tasklet->context = qcc;
+ qcc->wait_event.events = 0;
/* haproxy timeouts */
qcc->timeout = prx->timeout.client;