summaryrefslogtreecommitdiff
path: root/remote-curl.c
diff options
context:
space:
mode:
authorBrandon Williams <bmwill@google.com>2018-05-22 18:42:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-05-23 01:24:13 (GMT)
commiteaf6a1b6e9e7ec1dd3c17037efd271e430264975 (patch)
tree5c6efb05c24645c1fcf72d2bc5b18b4b58dcc750 /remote-curl.c
parent1a53e692afd417897d76bff4ce54bc05a3a976b2 (diff)
downloadgit-eaf6a1b6e9e7ec1dd3c17037efd271e430264975.zip
git-eaf6a1b6e9e7ec1dd3c17037efd271e430264975.tar.gz
git-eaf6a1b6e9e7ec1dd3c17037efd271e430264975.tar.bz2
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>
Diffstat (limited to 'remote-curl.c')
-rw-r--r--remote-curl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/remote-curl.c b/remote-curl.c
index 565bba1..99b0bed 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);