-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
USE_HYPER and CURLE_BAD_FUNCTION_ARGUMENT #8894
Comments
This way won't eliminate the debugging strings if --disable-verbose is
selected.
|
So which option causes it to say this? |
Which |
It doesn't help much, but I don't get any such warning on my hyper builds on Linux. |
I found out one candidate for this was here. |
That's very weird. And I'm just about to bring in the headers API in by default... (#8900) |
Adding more traces to |
Right, for the headers API code it is not a header and it shouldn't go there for the status line. I'll take a look too. |
Reproduced, PR pending. |
To make sure the headers API can filter it out as not a regular header. Reported-by: Gisle Vanem Fixes #8894
With that PR, it works. |
More Hyper problems. I'll just add this here.
Building w/o
|
Sure, Hyper support is still experimental and "not there yet". We should probably add "co-exist with HTTP/3" as an issue on https://github.com/curl/curl/wiki/Hyper |
To make sure the headers API can filter it out as not a regular header. Reported-by: Gisle Vanem Fixes #8894
Building libcurl with
-DUSE_HYPER
always causes the annoying error:curl: (43) A libcurl function was given a bad argument
on any address.I'm building with the most up-to date version of
Hyper.dll.lib
on Win-10.Now, a simple
curl.exe -vL4 www.curl.se
, just gives this:So it would be nice if in verbose-mode (
-v
) libcurl could state at which point that is happening.Perhaps only with
-DCURLDEBUG
. I was thinking of adding something like this tomemdebug.h
:And using this every place where a
data->set.verbose
is present.The text was updated successfully, but these errors were encountered: