From 960d68a5af6c89da1333ac9e1f118496ad358082 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Fri, 23 Aug 2024 15:26:54 +0200 Subject: [PATCH] MINOR: mux-quic: correct qcc_bufwnd_full() documentation Fix returned value domment of qcc_bufwnd_full() which was incorrect. --- src/mux_quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3