From: Amaury Denoyelle Date: Fri, 23 Aug 2024 13:26:54 +0000 (+0200) Subject: MINOR: mux-quic: correct qcc_bufwnd_full() documentation X-Git-Tag: v3.1-dev7~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=960d68a5af6c89da1333ac9e1f118496ad358082;p=thirdparty%2Fhaproxy.git MINOR: mux-quic: correct qcc_bufwnd_full() documentation Fix returned value domment of qcc_bufwnd_full() which was incorrect. --- diff --git a/src/mux_quic.c b/src/mux_quic.c index c1855de076..78baccb825 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -524,7 +524,7 @@ void qcs_notify_send(struct qcs *qcs) } } -/* Returns true if a Tx stream buffer can be allocated. */ +/* Returns true if buffer window does not have room for a new buffer. */ static inline int qcc_bufwnd_full(const struct qcc *qcc) { const struct quic_conn *qc = qcc->conn->handle.qc;