-
Notifications
You must be signed in to change notification settings - Fork 7.8k
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
Missing CURL_HTTP_VERSION_3 constant #11755
Comments
I'm out for vacations without a proper access to a computer until july 31th. I'll have a look at that time. |
https://curl.se/libcurl/c/symbols-in-versions.html I don't see a "CURL_HTTP_VERSION_3_0". |
Updated, the name is |
Related: https://php.watch/articles/php-curl-http3 by @Ayesh |
Ping :) |
Hi @nicolas-grekas - we recently had #15350 merged, so PHP 8.4 will have |
Sure, thanks for the help! |
Description
In order to enable HTTP2, we can do
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
.Don't we need a corresponding call for v3?
CURL_HTTP_VERSION_3
does not exist, is that intended?Maybe we're supposed to use
CURLALTSVC_H3
instead?PHP Version
PHP 8.3
The text was updated successfully, but these errors were encountered: