Re: libcurl - HTTP - The logic for reusing connections and the reasons for closing connections

2020-06-07 Thread Daniel Stenberg via curl-library
On Sun, 7 Jun 2020, Dorit Mari via curl-library wrote: I know libcurl has multiple connections open towards the same destination due to the load. How come it doesn't use one of them for almost 2 minutes, leading to its closure? Well either its a bug in curl, or it was sufficient to use the

libcurl - HTTP - The logic for reusing connections and the reasons for closing connections

2020-06-07 Thread Dorit Mari via curl-library
Hello, I'm looking for help understanding the way libcurl reuses connections and the reasons for it closing connections which should be reusable for sending HTTP requests (HTTP 1.1 protocol). I'm using libcurl in a program for sending many HTTP requests in parallel. I use libcurl with libev,