summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_rstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/quic/quic_rstream.c')
-rw-r--r--ssl/quic/quic_rstream.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/ssl/quic/quic_rstream.c b/ssl/quic/quic_rstream.c
index 9b4e6a2c51..9c4b8b716b 100644
--- a/ssl/quic/quic_rstream.c
+++ b/ssl/quic/quic_rstream.c
@@ -10,8 +10,6 @@
#include "internal/time.h"
#include "internal/quic_stream.h"
#include "internal/quic_sf_list.h"
-#include "internal/quic_fc.h"
-#include "internal/quic_error.h"
struct quic_rstream_st {
SFRAME_LIST fl;
@@ -49,12 +47,6 @@ int ossl_quic_rstream_queue_data(QUIC_RSTREAM *qrs, OSSL_QRX_PKT_WRAP *pkt_wrap,
range.start = offset;
range.end = offset + data_len;
- if (qrs->rxfc != NULL
- && (!ossl_quic_rxfc_on_rx_stream_frame(qrs->rxfc, range.end, fin)
- || ossl_quic_rxfc_get_error(qrs->rxfc, 0) != QUIC_ERR_NO_ERROR))
- /* QUIC_ERR_FLOW_CONTROL_ERROR or QUIC_ERR_FINAL_SIZE detected */
- return 0;
-
return ossl_sframe_list_insert(&qrs->fl, &range, pkt_wrap, data, fin);
}