From db82878afd5abf8d185c27e95f571dc217368ded Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Tue, 18 Apr 2023 15:11:45 +0200 Subject: [PATCH] quiche: Enable IDLE egress handling Follow-up to 544abeea which added the handling but wrongly left it commented out. Closes https://github.com/curl/curl/pull/11000 --- lib/vquic/curl_quiche.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vquic/curl_quiche.c b/lib/vquic/curl_quiche.c index eee2fe2480..6f2736d66e 100644 --- a/lib/vquic/curl_quiche.c +++ b/lib/vquic/curl_quiche.c @@ -1145,8 +1145,8 @@ static CURLcode cf_quiche_data_event(struct Curl_cfilter *cf, break; } case CF_CTRL_DATA_IDLE: - /* result = cf_flush_egress(cf, data); - DEBUGF(LOG_CF(data, cf, "data idle, flush egress -> %d", result)); */ + result = cf_flush_egress(cf, data); + DEBUGF(LOG_CF(data, cf, "data idle, flush egress -> %d", result)); break; default: break; -- 2.47.3