Переглянути джерело

Don't force HTTP/1.1 connections by default.

default 2 роки тому
батько
коміт
40c748bc5b
1 змінених файлів з 2 додано та 0 видалено
  1. 2 0
      xs_curl.h

+ 2 - 0
xs_curl.h

@@ -103,8 +103,10 @@ d_char *xs_http_request(char *method, char *url, d_char *headers,
 
     curl_easy_setopt(curl, CURLOPT_TIMEOUT, 5L);
 
+#ifdef FORCE_HTTP_1_1
     /* force HTTP/1.1 */
     curl_easy_setopt(curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
+#endif
 
     /* obey redirections */
     curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);