mirror of
https://github.com/curl/curl.git
synced 2026-07-29 22:08:05 +03:00
HTTP3: initial (experimental) support
USe configure --with-ngtcp2 or --with-quiche Using either option will enable a HTTP3 build. Co-authored-by: Alessandro Ghedini <alessandro@ghedini.me> Closes #3500
This commit is contained in:
parent
7644abf8e8
commit
3af0e76d1e
33 changed files with 2520 additions and 23 deletions
|
|
@ -191,6 +191,8 @@ static const struct helptxt helptext[] = {
|
|||
"Use HTTP 2"},
|
||||
{" --http2-prior-knowledge",
|
||||
"Use HTTP 2 without HTTP/1.1 Upgrade"},
|
||||
{" --http3-direct",
|
||||
"Use HTTP v3"},
|
||||
{" --ignore-content-length",
|
||||
"Ignore the size of the remote resource"},
|
||||
{"-i, --include",
|
||||
|
|
@ -530,6 +532,7 @@ static const struct feat feats[] = {
|
|||
{"CharConv", CURL_VERSION_CONV},
|
||||
{"TLS-SRP", CURL_VERSION_TLSAUTH_SRP},
|
||||
{"HTTP2", CURL_VERSION_HTTP2},
|
||||
{"HTTP3", CURL_VERSION_HTTP3},
|
||||
{"UnixSockets", CURL_VERSION_UNIX_SOCKETS},
|
||||
{"HTTPS-proxy", CURL_VERSION_HTTPS_PROXY},
|
||||
{"MultiSSL", CURL_VERSION_MULTI_SSL},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue