Re: Libcurl reports 'Error in the HTTP2 framing layer' (16) for outgoing request.

2021-06-07 Thread Jeroen Ooms via curl-library
On Thu, Jun 3, 2021 at 7:56 PM Daniel Stenberg via curl-library wrote: > > On Thu, 3 Jun 2021, Shikha Sharma wrote: > > > Proposed solution: > > Ah, yes that looks interesting - especially since it fixes the problem for > you! Are you able to make a pull-request out of that and submit, or would

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

2020-11-08 Thread Jeroen Ooms via curl-library
Not sure if it is related, but the examples seem to have disappeared, eg: https://curl.se/libcurl/c/http-post.html On Sun, Nov 8, 2020 at 8:46 PM Daniel Stenberg via curl-library wrote: > > On Wed, 4 Nov 2020, Daniel Stenberg via curl-library wrote: > > > The old name of course also works

Re: Curl as static library with dependencies

2019-11-22 Thread Jeroen Ooms via curl-library
The msys2 project provides up-to-date mingw-w64 builds for all these libraries, shared and static. This is what everyone uses to build with mingw-w64. Just download msys2 and run: pacman -S mingw-w64-{i686,x86_64}-curl Alternatively you can download the msys2 builds manually from:

Re: How to manage buggy http/2 in MacOS and Linux

2019-11-19 Thread Jeroen Ooms via curl-library
On Tue, Nov 19, 2019 at 9:25 AM Ray Satiro via curl-library wrote: > > On 11/18/2019 8:42 AM, Jeroen Ooms via curl-library wrote: > > I maintain the libcurl R bindings which are used by 1M+ users to build > > clients for countless web services. On MacOS and Linux, the

How to manage buggy http/2 in MacOS and Linux

2019-11-18 Thread Jeroen Ooms via curl-library
Hi! Bit of a discussion topic here. I maintain the libcurl R bindings which are used by 1M+ users to build clients for countless web services. On MacOS and Linux, the bindings link to the system version of libcurl. As of MacOS Catalina (released last month) this is now libcurl 7.64.1 which is the

Re: libcurl - MacOS 10.14 ...

2019-11-12 Thread Jeroen Ooms via curl-library
On Tue, Nov 12, 2019 at 9:37 PM Jeroen Ooms wrote: > > On Tue, Nov 12, 2019 at 8:51 PM Daniel Stenberg via curl-library > wrote: > > > > On Tue, 12 Nov 2019, Bryan O'Brien via curl-library wrote: > > > > > Courtesy of curl_version(), heres the version I’m using > > > > > > libcurl/7.54.0

Re: libcurl - MacOS 10.14 ...

2019-11-12 Thread Jeroen Ooms via curl-library
On Tue, Nov 12, 2019 at 8:51 PM Daniel Stenberg via curl-library wrote: > > On Tue, 12 Nov 2019, Bryan O'Brien via curl-library wrote: > > > Courtesy of curl_version(), heres the version I’m using > > > > libcurl/7.54.0 LibreSSL/2.6.5 zlib/1.2.11 nghttp2/1.24.1 > > > > If anyone is aware of a

Re: Looking for a HTTP test server which doesn't send Content-Length

2019-10-20 Thread Jeroen Ooms via curl-library
On Sat, Oct 19, 2019 at 6:47 PM Andreas Falkenhahn via curl-library wrote: > > Please excuse this slightly off-topic question but I think this is the best > place to ask about it ;) > > So unfortunately, my old test case HTTP server which sent HTTP responses > without the Content-Length field

Re: static linked curl library has undefined symbols

2017-11-04 Thread Jeroen Ooms via curl-library
If you're on Windows, you have to compile your application/bindings with "-DCURL_STATICLIB" for it to statically link against libcurl. On Sat, Nov 4, 2017 at 11:07 AM, 开心 via curl-library wrote: > i'm compiling a static curl library. > env

Re: Support for WinHttpGetProxyForUrl ?

2017-10-11 Thread Jeroen Ooms via curl-library
On Mon, Oct 2, 2017 at 1:05 PM, Daniel Stenberg wrote: > There's a section in the TODO about the topic: > https://curl.haxx.se/docs/todo.html#auto_detect_proxy > The gist of it is basically: yes I think it is a good idea, but I dread > relying on bad code to do it. That is good

Support for WinHttpGetProxyForUrl ?

2017-09-27 Thread Jeroen Ooms via curl-library
Windows uses on corporate networks can sometimes only connect to the internet via an enterprise proxy server that is automatically detected and configured by Internet Explorer clients. On some networks, different proxy servers are required for different URL's (intranet vs internet, etc). Windows

Re: Time to disable "Expect: 100-continue" by default?

2017-07-17 Thread Jeroen Ooms via curl-library
On Thu, Jul 6, 2017 at 9:59 AM, Daniel Stenberg wrote: > > > Applications that currently disable Expect: header use should of course not > be affected by this sort of change. They would just disable it extra much! =) I've been debugging a problem with a server randomly