BUG/MEDIUM: mux-h2: remove the HTX EOM block on H2 response headers
If we decided to emit the end of stream flag on the H2 response headers
frame, we must remove the EOM block from the HTX stream, otherwise it
will lead to an extra DATA frame being sent with the ES flag and will
violate the protocol.
diff --git a/src/mux_h2.c b/src/mux_h2.c
index bd329cc..bab4c85 100644
--- a/src/mux_h2.c
+++ b/src/mux_h2.c
@@ -3762,6 +3762,9 @@
ret += htx_get_blksz(blk);
blk = htx_remove_blk(htx, blk);
}
+
+ if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
+ htx_remove_blk(htx, blk_end);
end:
return ret;
full: