ALPN: fix typo in http/1.1 identifier

According to https://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-05
it is "http/1.1" and not "http/1.0".
This commit is contained in:
Fabian Frank 2014-05-19 22:36:31 -07:00 committed by Daniel Stenberg
parent 274f932311
commit 316f79cef2
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
/* see http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-04 */
#define ALPN_HTTP_1_1_LENGTH 8
#define ALPN_HTTP_1_1 "http/1.0"
#define ALPN_HTTP_1_1 "http/1.1"
bool Curl_ssl_config_matches(struct ssl_config_data* data,
struct ssl_config_data* needle);