mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-02-04 12:32:23 +00:00
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:
parent
83b7a5b490
commit
f366cb7bf6
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user