diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-12-13 09:23:36 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-12-13 09:24:51 +0100 |
commit | 4bcc532de5b639ace6f96f0a30524a08861843b1 (patch) | |
tree | 8d808958c1a58f54b1d29ca68dbe9baaef752d57 /include | |
parent | 7f683b0ea87ed158eb4bd22cdd1f26eb901a97d0 (diff) | |
download | curl-4bcc532de5b639ace6f96f0a30524a08861843b1.tar.gz |
http: add libcurl option to allow HTTP/2 for HTTPS only
... and stick to 1.1 for HTTP. This is in line with what browsers do and
should have very little risk.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 7fd533e51..84229bb69 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1722,7 +1722,8 @@ enum { for us! */ CURL_HTTP_VERSION_1_0, /* please use HTTP 1.0 in the request */ CURL_HTTP_VERSION_1_1, /* please use HTTP 1.1 in the request */ - CURL_HTTP_VERSION_2_0, /* please use HTTP 2.0 in the request */ + CURL_HTTP_VERSION_2_0, /* please use HTTP 2 in the request */ + CURL_HTTP_VERSION_2TLS, /* use version 2 for HTTPS, version 1.1 for HTTP */ CURL_HTTP_VERSION_LAST /* *ILLEGAL* http version */ }; |