mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-11-08 20:40:59 +01:00
MINOR: quic: Do not drop packets with RESET_STREAM frames
If the connection client timeout has expired, the mux is released. If the client decides to initiate a new request, we send a STOP_SENDING frame. Then, the client endessly sends a RESET_STREAM frame. At this time, we simulate the fact that we support the RESET_STREAM frame thanks to this ridiculously minimalistic patch.
This commit is contained in:
parent
4df2fe90c8
commit
e06ca65e8d
@ -2454,7 +2454,11 @@ static int qc_parse_pkt_frms(struct quic_rx_packet *pkt, struct ssl_sock_ctx *ct
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case QUIC_FT_RESET_STREAM:
|
||||||
|
/* TODO: handle this frame at STREAM level */
|
||||||
|
break;
|
||||||
case QUIC_FT_STOP_SENDING:
|
case QUIC_FT_STOP_SENDING:
|
||||||
|
/* TODO: handle this frame at STREAM level */
|
||||||
break;
|
break;
|
||||||
case QUIC_FT_CRYPTO:
|
case QUIC_FT_CRYPTO:
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user