Re: libcurl read-like interface

2020-12-27 Thread Daniel Stenberg via curl-library
On Sun, 27 Dec 2020, XSLT2.0 via curl-library wrote: It is still scary to read in libcurl's documentation that when pausing http/2 libcurl might buffer up to 32MB of data for each transfer! Is there a "SETOPT" to control that? No, but we could make one. The issue is of course that the 32MB

Re: libcurl read-like interface

2020-12-27 Thread XSLT2.0 via curl-library
> We discourage users from using curl_easy_recv() > for doing any protocol that libcurl implements natively.  Ok, found it! The solution was obvious, sorry for all the blurps: curl_easy_pause() Inside the multi_perform/callbacks caller's loop, it allows better control over the "transfer loop"