remote-curl: accept compressed responses with protocol v2
Configure curl to accept compressed responses when using protocol v2 by setting `CURLOPT_ENCODING` to "", which indicates that curl should send an "Accept-Encoding" header with all supported compression encodings. Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Brandon Williams committed
May 22, 2018 at 11:42 UTC
eaf6a1b6e9e7ec1dd3c17037efd271e430264975
1 file changed
+1
remote-curl.c
+1
@@ -1259,6 +1259,7 @@ static int proxy_request(struct proxy_state *p)
1259
1260
slot = get_active_slot();
1261
1262
+ curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "");
1263
curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
1264
curl_easy_setopt(slot->curl, CURLOPT_POST, 1);
1265
curl_easy_setopt(slot->curl, CURLOPT_URL, p->service_url);