diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-09-02 23:30:38 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-09-04 10:05:00 +0200 |
commit | 698e3bdf82b3db038387bbf5fa42be99e60b7338 (patch) | |
tree | 93d03b94a54421383ff96aed37ed5b81b58f3390 /include | |
parent | 9011fb3f0c758bf0e97969c79b2c393d2e09ff2a (diff) | |
download | curl-698e3bdf82b3db038387bbf5fa42be99e60b7338.tar.gz |
curl.h: added CURL_HTTP_VERSION_2_0
Initial library considerations documented in lib/README.http2
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index ed536d162..b790f89cc 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1608,6 +1608,7 @@ 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_LAST /* *ILLEGAL* http version */ }; |