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
> 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
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
> 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
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
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.
---
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
> 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
>> 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
> 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
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
> Thoughts?
Just one: Amazing idea! :)
---
Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library
Etiquette: https://curl.se/mail/etiquette.html
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
> 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
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
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.
___
16 matches
Mail list logo