]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
quiche: Enable IDLE egress handling
authorStefan Eissing <stefan@eissing.org>
Tue, 18 Apr 2023 13:11:45 +0000 (15:11 +0200)
committerJay Satiro <raysatiro@yahoo.com>
Tue, 18 Apr 2023 19:35:38 +0000 (15:35 -0400)
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

index eee2fe2480b28ef7322932fb06281ebb7654cb7a..6f2736d66e5ecfff846884fbb8d5617f4bd95de7 100644 (file)
@@ -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;