From 316f79cef2318baf65dc55dec9b1617684fd78dd Mon Sep 17 00:00:00 2001 From: Fabian Frank Date: Mon, 19 May 2014 22:36:31 -0700 Subject: [PATCH] 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". --- lib/vtls/vtls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vtls/vtls.h b/lib/vtls/vtls.h index 823c041ed..8f977a3d4 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);