CLEANUP: mux-h2: remove misleading comments about CONTINUATION
These ones were left-over from copy-pastes that are unrelated to
CONTINUATION frames.
diff --git a/src/mux_h2.c b/src/mux_h2.c
index 59fe406..1906d58 100644
--- a/src/mux_h2.c
+++ b/src/mux_h2.c
@@ -3705,9 +3705,6 @@
b_add(&h2c->mbuf, outbuf.data);
h2s->flags |= H2_SF_HEADERS_SENT;
- /* for now we don't implemented CONTINUATION, so we wait for a
- * body or directly end in TRL2.
- */
if (es_now) {
// trim any possibly pending data (eg: inconsistent content-length)
ret += max;
@@ -4164,9 +4161,6 @@
b_add(&h2c->mbuf, outbuf.data);
h2s->flags |= H2_SF_HEADERS_SENT;
- /* for now we don't implemented CONTINUATION, so we wait for a
- * body or directly end in TRL2.
- */
if (es_now) {
h2s->flags |= H2_SF_ES_SENT;
if (h2s->st == H2_SS_OPEN)
@@ -4380,9 +4374,6 @@
h2s->flags |= H2_SF_HEADERS_SENT;
h2s->st = H2_SS_OPEN;
- /* for now we don't implemented CONTINUATION, so we wait for a
- * body or directly end in TRL2.
- */
if (es_now) {
// trim any possibly pending data (eg: inconsistent content-length)
h2s->flags |= H2_SF_ES_SENT;