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.
This commit is contained in:
Frédéric Lécaille 2021-11-18 10:57:18 +01:00
parent 83b7a5b490
commit f366cb7bf6

View File

@ -2074,6 +2074,15 @@ static int qc_parse_pkt_frms(struct quic_rx_packet *pkt, struct ssl_sock_ctx *ct
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: