CLEANUP: mux-quic: adjust comment on qcs_consume()
Since a previous refactoring, application protocol layer is not require
anymore to call qcs_consume(). This function is now automatically used
by the MUX itself.
diff --git a/src/mux_quic.c b/src/mux_quic.c
index 0f85bbd..85fb620 100644
--- a/src/mux_quic.c
+++ b/src/mux_quic.c
@@ -380,9 +380,8 @@
return b_make(ncb_orig(b), b->size, b->head, ncb_data(b, 0));
}
-/* Remove <bytes> from <qcs> Rx buffer. This must be called by transcoders
- * after STREAM parsing. Flow-control for received offsets may be allocated for
- * the peer if needed.
+/* Remove <bytes> from <qcs> Rx buffer. Flow-control for received offsets may
+ * be allocated for the peer if needed.
*/
static void qcs_consume(struct qcs *qcs, uint64_t bytes)
{