From: Brandon Williams Date: Tue, 22 May 2018 18:42:04 +0000 (-0700) Subject: remote-curl: accept compressed responses with protocol v2 X-Git-Tag: v2.18.0-rc0~1^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/eaf6a1b6e9e7ec1dd3c17037efd271e430264975 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 Signed-off-by: Junio C Hamano --- diff --git a/remote-curl.c b/remote-curl.c index 565bba1043..99b0bedc6d 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -1259,6 +1259,7 @@ static int proxy_request(struct proxy_state *p) slot = get_active_slot(); + curl_easy_setopt(slot->curl, CURLOPT_ENCODING, ""); curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0); curl_easy_setopt(slot->curl, CURLOPT_POST, 1); curl_easy_setopt(slot->curl, CURLOPT_URL, p->service_url);