examples/http3.c: use CURL_HTTP_VERSION_3
and update the comment Closes #10619
This commit is contained in:
Родитель
22eec78027
Коммит
49a9f13c39
|
@ -37,11 +37,9 @@ int main(void)
|
||||||
if(curl) {
|
if(curl) {
|
||||||
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
|
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
|
||||||
|
|
||||||
/* Forcing HTTP/3 will make the connection fail if the server is not
|
/* Use HTTP/3 but fallback to earlier HTTP if necessary */
|
||||||
accessible over QUIC + HTTP/3 on the given host and port.
|
|
||||||
Consider using CURLOPT_ALTSVC instead! */
|
|
||||||
curl_easy_setopt(curl, CURLOPT_HTTP_VERSION,
|
curl_easy_setopt(curl, CURLOPT_HTTP_VERSION,
|
||||||
(long)CURL_HTTP_VERSION_3ONLY);
|
(long)CURL_HTTP_VERSION_3);
|
||||||
|
|
||||||
/* Perform the request, res will get the return code */
|
/* Perform the request, res will get the return code */
|
||||||
res = curl_easy_perform(curl);
|
res = curl_easy_perform(curl);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче