MINOR: quic: add HTX EOM on request end
Set the HTX EOM flag on RX the app layer. This is required to notify
about the end of the request for the stream analyzers, else the request
channel never goes to MSG_DONE state.
diff --git a/src/quic_frame.c b/src/quic_frame.c
index dfb6103..f938d40 100644
--- a/src/quic_frame.c
+++ b/src/quic_frame.c
@@ -427,6 +427,8 @@
else if (!quic_dec_int(&stream->len, buf, end) || end - *buf < stream->len)
return 0;
+ stream->fin = (frm->type & QUIC_STREAM_FRAME_TYPE_FIN_BIT);
+
stream->data = *buf;
*buf += stream->len;