Thread (1 message) 1 message, 1 author, 2018-11-09

Re: [PATCH v6 1/1] http: add support selecting http version

From: Junio C Hamano <hidden>
Date: 2018-11-09 02:57:19

Eric Sunshine [off-list ref] writes:
quoted
@@ -284,6 +285,9 @@ static void process_curl_messages(void)
 static int http_options(const char *var, const char *value, void *cb)
 {
+       if (!strcmp("http.version",var)) {
Style: space after comma
quoted
+               return git_config_string(&curl_http_version, var, value);
+       }
@@ -806,6 +834,16 @@ static CURL *get_curl_handle(void)
+    if (curl_http_version) {
+               long opt;
+               if (!get_curl_http_version_opt(curl_http_version, &opt)) {
+                       /* Set request use http version */
+                       curl_easy_setopt(result, CURLOPT_HTTP_VERSION,opt);
Style: space after comma
quoted
+               }
+    }
Thanks, both.  This is almost done, I think.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help