Re: Minimum requirement: cmake version 3.4

2018-09-21 Thread Zakrzewski, Jakub via curl-library
From: curl-library on behalf of myLC--- via curl-library Sent: 21 September 2018 11:33 To: curl-library@cool.haxx.se Cc: m...@gmx.de Subject: Minimum requirement: cmake version 3.4 This is not installed on many systems. I managed to build curl anyhow, b

Re: [DKIM] Re: curl turns 21 years today

2019-03-20 Thread Zakrzewski, Jakub via curl-library
> Incidently, today is also 'Spring Equinox' which > was also true in 1998: > https://greenwichmeantime.com/longest-day/equinox-solstice-1992-1999/ Coincidence? I don't think so! --- Unsubscribe: https://cool.haxx.se/list/listinfo

Re: [DKIM] How to send intermediate certificate?

2019-04-05 Thread Zakrzewski, Jakub via curl-library
From: curl-library on behalf of Jun Sun via curl-library > I have followed the example of using user certificate in memory, > https://curl.haxx.se/libcurl/c/usercertinmem.html , and it worked great! > In my environment, however, we have an intermediate CA an

Re: [DKIM] Fwd: building simple program using libcurl on Win64

2019-06-05 Thread Zakrzewski, Jakub via curl-library
> From: curl-library on behalf of Salda via > curl-library > Sent: 06 June 2019 00:55 > To: curl-library@cool.haxx.se > Cc: Salda > Subject: [DKIM] Fwd: building simple program using libcurl on Win64 > Some help see below? Btw I don't want to install MinGW64 fo

Re: [DKIM] Re: Stoppable curl_easy_perform ?

2019-10-09 Thread Zakrzewski, Jakub via curl-library
From: curl-library on behalf of bch via curl-library Sent: 09 October 2019 08:01 To: libcurl development Cc: bch; Daniel Stenberg Subject: [DKIM] Re: Stoppable curl_easy_perform ? On Mon, Oct 7, 2019 at 23:50 Daniel Stenberg via curl-library mailto:curl-libr

Re: [DKIM] Some errors reported by valgrind

2020-06-05 Thread Zakrzewski, Jakub via curl-library
My wild guess is that Valgrind have something against the uninitialized bytes in the "ev" objects. The union epoll_data is 64 bits but you set only the 32-bit "fd" member. Try zeroing "ev" in crawler_init and setsock before use. ---

Re: URL validation

2020-07-13 Thread Zakrzewski, Jakub via curl-library
From: curl-library on behalf of Stephan Mühlstrasser via curl-library Sent: 13 July 2020 13:41 To: libcurl development Cc: Stephan Mühlstrasser Subject: URL validation > when using curl's URL functions, is it possible to validate the URL? > ... > While the

Re: Performing a GET request with JSON

2020-08-19 Thread Zakrzewski, Jakub via curl-library
> std::string temp = "{ \"pin\":\"A string\" }"; > curl_easy_setopt(curl, CURLOPT_POST, 1L); > curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE_LARGE, temp.size()); > curl_easy_setopt(curl, CURLOPT_COPYPOSTFIELDS, temp.c_str()); > curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "GET"); This is not going

Re: FW: GET http request

2020-09-08 Thread Zakrzewski, Jakub via curl-library
>> I have simulated with the command line and indeed see a second request in >> which the url is unchanged compared to the first request. But why are we >> seeing the changed url in the WireShark? I think it doesn't matter (or does it?) but you've not quoted the URL, resulting in the "group" para

Re: C ++ program using libcurl sends message and receives reply, but the message is sent twice.

2020-10-12 Thread Zakrzewski, Jakub via curl-library
> This program is capable of sending the message to the server and of > collecting the response from it, but as it is written, it sends the message > twice to the server, despite the fact that in the C ++ code it is only being > sent once (it must be something that the libcurl library does ind

Re: I'm now the owner of curl.se

2020-11-04 Thread Zakrzewski, Jakub via curl-library
How about making one of those the main one and the other one just a 302 redirection? That way it wouldn't look like two different hosts/sites. I don't know if this is still an issue with modern search engines, but it also seems cleaner to me. (Would maybe also make sense to redirecting the old c

Re: curl_easy_cmdline ?

2020-12-01 Thread Zakrzewski, Jakub via curl-library
> Thoughts? Just one: Amazing idea! :) --- Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library Etiquette: https://curl.se/mail/etiquette.html

Re: curl_easy_cmdline

2020-12-02 Thread Zakrzewski, Jakub via curl-library
On Wed, 2 Dec 2020, Daniel Stenberg wrote: > To me, that's probably one of the bigger philosophical concerns about this > idea. curl uses libcurl, libcurl doesn't know about curl. > But then nobody else than libcurl knows exactly what has been set for a > transfer so only libcurl itself can do a

Re: Continue Download C++ Implementation

2020-12-08 Thread Zakrzewski, Jakub via curl-library
> But the zip file can not be unzipped, and their sha256 sum is different, so > something went > wrong. > I assume I might have made an logical error, but I can see where. > I hope you guys can help me see where I have gone wrong. First - flush & close your file. It's almost certainly buffered a

Re: AUTH TLS and AUTH SSL

2021-02-02 Thread Zakrzewski, Jakub via curl-library
From: curl-library on behalf of WAQUET Thomas via curl-library > I use libcurl with curl_easy to make client connection with a FTPS server, > explicit TLS. The > curl send both “AUTH TLS” then “AUTH SSL”, I configured my curl with: > > … > curl_easy_seto

Re: How to authenticate when using “CURLOPT_CONNECT_ONLY” so I can use non-blocking curl_easy_send() and curl_easy_recv()

2021-07-18 Thread Zakrzewski, Jakub via curl-library
You have literally told curl to connect and do nothing else. BasicAuth is a part of HTTP protocol and done via HTTP headers which will not be send with CURLOPT_CONNECT_ONLY. If you want to continue using CURLOPT_CONNECT_ONLY, you'll have to do the HTTP part yourself. ___