From: Fabian Frank Date: Tue, 20 May 2014 05:36:31 +0000 (-0700) Subject: ALPN: fix typo in http/1.1 identifier X-Git-Tag: curl-7_37_0~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=316f79cef2318baf65dc55dec9b1617684fd78dd;p=thirdparty%2Fcurl.git 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". --- diff --git a/lib/vtls/vtls.h b/lib/vtls/vtls.h index 823c041eda..8f977a3d4e 100644 --- a/lib/vtls/vtls.h +++ b/lib/vtls/vtls.h @@ -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);