RE: spnego sspi delegation [windows 7]

2019-10-10 Thread Claudio via curl-library
>-Original Message- >From: curl-library On Behalf Of Claudio >via curl-library >Sent: Wednesday, July 03, 2019 1:56 PM >To: curl-library@cool.haxx.se >Cc: Rinaldi, Claudio: Quants (LDN) >Subject: spnego sspi delegation [windows 7] > > >This mail originated from outside our organisation

Re: debug CURLOPT_POSTFIELDS url?

2019-10-10 Thread Daniel Stenberg via curl-library
On Thu, 10 Oct 2019, ka sc via curl-library wrote: url_flags = "\"[\\\"INSERT INTO foo2 values(1,11)\\\"]\""; curl_easy_setopt(curl, CURLOPT_POSTFIELDS, url_flags.c_str()); Is there a way to see the output url so I can try that in commandline? The data you set with CURLOPT_POSTFIELDS is not

debug CURLOPT_POSTFIELDS url?

2019-10-10 Thread ka sc via curl-library
hi, I am a curl newbie and so far things have worked but now: I am setting CURLOPT_POSTFIELDS options in c++ api and once the json syntax works I am not getting any result from rqlite database sql command. It worked in command line with -d flag. url_flags = "\"[\\\"INSERT INTO foo2

"curl_multi_unblock"

2019-10-10 Thread Daniel Stenberg via curl-library
Hi, The other day I mentioned the curl_easy_abort() idea on how to stop an easy transfer from another thread: https://github.com/curl/curl/wiki/curl_easy_abort Here's the similar idea but for "unblocking" a multi interface wait/poll call. I call it "curl_multi_unblock" as a working title.

Re: "curl_multi_unblock"

2019-10-10 Thread Stefan Eissing via curl-library
Thinking about how I might use the curl_multi_unblock(). It seems unreliable in the sense that a thread calling this cannot be sure that another thread is actually blocked. The other one might be about to enter a blocking state and the unblock is just a bit too early... So, threads who want to

Feature request: passing ssl certificate and/or key parameter as content, not path

2019-10-10 Thread Nicolas Mora via curl-library
Hello, According to the libcurl documentation [1], if you want to specify a SSL certificate or key to the connection, the parameter must be a file path rather than the certificate or key value: "Pass a pointer to a zero terminated string as parameter. The string should be the file name of

Re: Feature request: passing ssl certificate and/or key parameter as content, not path

2019-10-10 Thread Nicolas Mora via curl-library
Le 19-10-10 à 14 h 21, Ray Satiro via curl-library a écrit : > > Gilles Vollant already has a work-in-progress pull request for this, I > think they are going to call it CURLOPT_SSLCERT_BLOB. Please contribute > to the discussion at https://github.com/curl/curl/pull/4371 > Thanks! I will take a

Re: Feature request: passing ssl certificate and/or key parameter as content, not path

2019-10-10 Thread Ray Satiro via curl-library
On 10/10/2019 10:48 AM, Nicolas Mora via curl-library wrote: According to the libcurl documentation [1], if you want to specify a SSL certificate or key to the connection, the parameter must be a file path rather than the certificate or key value: "Pass a pointer to a zero terminated string as

Re: spnego sspi delegation [windows 7]

2019-10-10 Thread Ray Satiro via curl-library
On 10/10/2019 5:24 AM, Claudio via curl-library wrote: -Original Message- From: curl-library On Behalf Of Claudio via curl-library Sent: Wednesday, July 03, 2019 1:56 PM To:curl-library@cool.haxx.se Cc: Rinaldi, Claudio: Quants (LDN) Subject: spnego sspi delegation [windows 7] This