mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2026-05-04 20:46:11 +02:00
MINOR: quic: Implement qc_process_mux()
At this time, we only add calls to qc_resume_each_sending_qcs() which handle the flow control and send lists.
This commit is contained in:
parent
d2ba0967b7
commit
1d40240f25
@ -1272,9 +1272,16 @@ __maybe_unused
|
||||
static int qc_process_mux(struct qcc *qcc)
|
||||
{
|
||||
TRACE_ENTER(QC_EV_QCC_WAKE, qcc->conn);
|
||||
/* XXX TO DO XXX */
|
||||
|
||||
/* First we always process the flow control list because the streams
|
||||
* waiting there were already elected for immediate emission but were
|
||||
* blocked just on this.
|
||||
*/
|
||||
qc_resume_each_sending_qcs(qcc, &qcc->fctl_list);
|
||||
qc_resume_each_sending_qcs(qcc, &qcc->send_list);
|
||||
|
||||
TRACE_LEAVE(QC_EV_QCC_WAKE, qcc->conn);
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user