Re: Compiling libcurl with c-ares

2018-08-08 Thread René Berber via curl-library
On 8/8/2018 4:43 PM, Yaakov Roth via curl-library wrote: > I've done a git clone of the latest curl release and wanted to know > which flags I need to pass to configure to compile with c-ares. --enable-ares -- R. Berber ---

Re: multi_socket and epoll example

2018-08-08 Thread James Read via curl-library
> > and make sure the application works correctly when using a small amount of >> transfers - perhaps a single one to start with - and then add more when >> you've confirmed that. > > Everything seems to work fine. With a single URL and with multiple URLs. The only issue I have is the throughput.

Re: Windows users! Help us test upload performance tuning?

2018-08-08 Thread Gisle Vanem via curl-library
Jan Ehrhardt wrote: I ended up with a Windows port of lftp, launched from a bash script. Curl sftp did resume, but was terribly slow. I also just tested with 'curl sftp//:' with the latest libssh2 and the new 'SIO_IDEAL_SEND_BACKLOG_QUERY' option. 'sftp://' is still 6 times slower than ftp

Compiling libcurl with c-ares

2018-08-08 Thread Yaakov Roth via curl-library
Hi, I've done a git clone of the latest curl release and wanted to know which flags I need to pass to configure to compile with c-ares. thanks, Yaakov --- Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library Etiquette:

Re: Curl closing connection in case of incomplete transfer

2018-08-08 Thread Daniel Stenberg via curl-library
On Wed, 8 Aug 2018, Antoine Magaud via curl-library wrote: I'm kinda new to using libcurl, and am facing an issue which I can't around. I am using curl version 7.41.0. That version is 3.5 years old and has no less than 42 known vulnerabilities! it is related to not reading the whole file,

Curl closing connection in case of incomplete transfer

2018-08-08 Thread Antoine Magaud via curl-library
Hello, I'm kinda new to using libcurl, and am facing an issue which I can't around. I am using curl version 7.41.0. The scenario is the following: I want to read a file on an FTP server (partially, only the first few MB of the file), and then keep the connection open to read another file in the

Re: Application to request http2 content with multiplexed multiple streams

2018-08-08 Thread Daniel Stenberg via curl-library
On Tue, 7 Aug 2018, Rajvardhan Deshmukh wrote: I looks fine, and you can verify yourself by reading the verbose output as it states clearly when it reuses connections. It reuses some connections and most of the times it says " * Connection 75 seems to be dead! * Closing connection 75 " and

Re: Windows users! Help us test upload performance tuning?

2018-08-08 Thread Daniel Stenberg via curl-library
On Wed, 8 Aug 2018, Daniel Stenberg via curl-library wrote: Right, that's a valid remark. But let's address that issue if/when someone actually gets a problem with it... Merged now! -- / daniel.haxx.se --- Unsubscribe:

Re: Windows and CA certificates

2018-08-08 Thread Daniel Stenberg via curl-library
On Tue, 7 Aug 2018, Daniel Jeliński via curl-library wrote: I recently started using HTTPS functionality with libcurl + openSSL; I noticed that by default this combo does not use Windows certificates, but instead wants to load them from CA bundle. This poses a maintenance problem - the bundle

Re: multi_socket and epoll example

2018-08-08 Thread Daniel Stenberg via curl-library
On Tue, 7 Aug 2018, James Read wrote: As long as libcurl is built to use the threaded resolver (default) or the c-ares backend, it will do name resolving in a non-blocking manner. I just did a standard install using the latest git clone. Then it probably built with the threaded resolver. At