diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-06-05 08:26:47 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-06-05 08:26:47 +0200 |
commit | 3587da9e7c92a486349f4f59a895b69c7000cb00 (patch) | |
tree | 4ccfc5beef825d559c8cfc672d73962fcc0b57da | |
parent | 1ce14037c0c4f7448422ba2d4c7f12ceb1289811 (diff) |
curl.h: add CURL_HTTP_VERSION_2
The protocol is named "HTTP/2" after all. It is an alias for the
existing CURL_HTTP_VERSION_2_0 enum.
-rw-r--r-- | docs/libcurl/symbols-in-versions | 1 | ||||
-rw-r--r-- | include/curl/curl.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/libcurl/symbols-in-versions b/docs/libcurl/symbols-in-versions index 1a9dc3697..8299a5179 100644 --- a/docs/libcurl/symbols-in-versions +++ b/docs/libcurl/symbols-in-versions @@ -671,6 +671,7 @@ CURL_GLOBAL_WIN32 7.8.1 CURL_HTTP_VERSION_1_0 7.9.1 CURL_HTTP_VERSION_1_1 7.9.1 CURL_HTTP_VERSION_2_0 7.33.0 +CURL_HTTP_VERSION_2 7.43.0 CURL_HTTP_VERSION_NONE 7.9.1 CURL_IPRESOLVE_V4 7.10.8 CURL_IPRESOLVE_V6 7.10.8 diff --git a/include/curl/curl.h b/include/curl/curl.h index 727f19a4f..eab2f6e99 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1695,6 +1695,11 @@ enum { CURL_HTTP_VERSION_LAST /* *ILLEGAL* http version */ }; +/* Convenience definition simple because the name of the version is HTTP/2 and + not 2.0. The 2_0 version of the enum name was set while the version was + still planned to be 2.0 and we stick to it for compatibility. */ +#define CURL_HTTP_VERSION_2 CURL_HTTP_VERSION_2_0 + /* * Public API enums for RTSP requests */ |