mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-15 16:04:37 +00:00
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).
This commit is contained in:
parent
4e22f28feb
commit
f27b66faee
@ -745,6 +745,7 @@ static int qc_init(struct connection *conn, struct proxy *prx,
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user