From f1a018e08d77e30cda40735c0abb44b778f6893e Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Thu, 10 May 2012 12:15:03 +0000 Subject: [PATCH] set transfer encoding to gzip as recommended by LP documentation. --- src/http.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/http.c b/src/http.c index f2351c9..4b7b27f 100644 --- a/src/http.c +++ b/src/http.c @@ -91,6 +91,7 @@ static char *fetch_url(const char *url) curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, cbk_curl); curl_easy_setopt(curl, CURLOPT_WRITEDATA, content); curl_easy_setopt(curl, CURLOPT_USERAGENT, "ppastats/0.0"); + curl_easy_setopt(curl, CURLOPT_TRANSFER_ENCODING, 1); if (curl_easy_perform(curl) == CURLE_OK) { curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); -- 2.7.4