MINOR: quic: Add minimalistic support for stream flow control frames

This simple patch add the parsing support for theses frames. But nothing is
done at this time about the streams or flow control concerned. This is only to
prevent some QUIC tracker or interop runner tests from failing for a reason
independant of their tested features.
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index 7508b27..86c7ff8 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -2074,6 +2074,15 @@
 
 			break;
 		}
+		case QUIC_FT_MAX_DATA:
+		case QUIC_FT_MAX_STREAM_DATA:
+		case QUIC_FT_MAX_STREAMS_BIDI:
+		case QUIC_FT_MAX_STREAMS_UNI:
+		case QUIC_FT_DATA_BLOCKED:
+		case QUIC_FT_STREAM_DATA_BLOCKED:
+		case QUIC_FT_STREAMS_BLOCKED_BIDI:
+		case QUIC_FT_STREAMS_BLOCKED_UNI:
+			break;
 		case QUIC_FT_NEW_CONNECTION_ID:
 			break;
 		case QUIC_FT_CONNECTION_CLOSE: