Re: a HTTP/2 window sizing dilemma!

2020-02-20 Thread Daniel Stenberg via curl-library
On Thu, 20 Feb 2020, Daniel Stenberg via curl-library wrote: But even so, the buffer size might very well be set to smaller sizes than you'd want the HTTP/2 window size to be. Can we avoid a new option for window size without having users suffer? Jay brought the suggestion [1] that we could

Re: Building CURL with OpenSSL

2020-02-20 Thread Jason Proctor via curl-library
On Thu, Feb 20, 2020 at 2:58 PM Daniel Stenberg wrote: > > On Thu, 20 Feb 2020, Jason Proctor wrote: > > > Which versions of Curl vs OpenSSL work for this trick? > > Every version combo I've ever tried it with, which should go back long enough > to cover virtually any version that could ever

Re: Building CURL with OpenSSL

2020-02-20 Thread Daniel Stenberg via curl-library
On Thu, 20 Feb 2020, Jason Proctor wrote: Which versions of Curl vs OpenSSL work for this trick? Every version combo I've ever tried it with, which should go back long enough to cover virtually any version that could ever still be interesting today... Is enabling of TLS 1.3 necessary?

Re: Building CURL with OpenSSL

2020-02-20 Thread Jason Proctor via curl-library
On Thu, Feb 20, 2020 at 12:39 PM Daniel Stenberg wrote: > > On Thu, 20 Feb 2020, Jason Proctor via curl-library wrote: > > > I see that Curl has a configure option for pointing it at an OpenSSL > > installation, but so far I have been unable to make this work. With the > > latest versions of both

Re: Building CURL with OpenSSL

2020-02-20 Thread Daniel Stenberg via curl-library
On Thu, 20 Feb 2020, Jason Proctor via curl-library wrote: I see that Curl has a configure option for pointing it at an OpenSSL installation, but so far I have been unable to make this work. With the latest versions of both packages, and OpenSSL successfully built and installed, the Curl

Building CURL with OpenSSL

2020-02-20 Thread Jason Proctor via curl-library
Dear Curlers, Having a mostly fine time with Curl / LibCurl. Thanks for all the effort! We prefer to build third party dependencies from source to make us less platform dependent and so we know what we're getting. So far building Curl from source has been problem-free. However, now we would like

a HTTP/2 window sizing dilemma!

2020-02-20 Thread Daniel Stenberg via curl-library
Hello team! I'm currently working on issue #4939. It made me run into a little issue with how we do the HTTP/2 window sizing and I've realized we need to change our ways. # What the window means The announced window size is the amount of data we tell the other side it can send do us and

Re: Crash when using CURLOPT_WILDCARDMATCH

2020-02-20 Thread Daniel Stenberg via curl-library
On Thu, 20 Feb 2020, Antoine via curl-library wrote: I'm getting a constant crash with libcurl when using the CURLOPT_WILDCARDMATCH option. From what I could investigate it crashes in the following function in ftp.c : static CURLcode wc_statemach(struct connectdata *conn) It crashes on

Crash when using CURLOPT_WILDCARDMATCH

2020-02-20 Thread Antoine via curl-library
Hi, I'm getting a constant crash with libcurl when using the CURLOPT_WILDCARDMATCH option. From what I could investigate it crashes in the following function in ftp.c : static CURLcode wc_statemach(struct connectdata *conn) It crashes on the call to the chunk_bgn callback: userresponse =

Re: use libcurl to obtain the real-time speed of git clone.

2020-02-20 Thread Ray Satiro via curl-library
On 2/18/2020 4:34 AM, Hongyi Zhao via curl-library wrote: So yes, git should be able to show you the current download speed with libcurl. Doesn't it already do this? Yes. But I want to use libcurl to do more self-customized jobs. libcurl can show a progress meter if you disable NOPROGRESS