From: Jean-Philippe Orsini Date: Thu, 10 May 2012 12:15:03 +0000 (+0000) Subject: set transfer encoding to gzip as recommended by LP documentation. X-Git-Tag: v1.3.0~84 X-Git-Url: http://git.wpitchoune.net/gitweb/?p=ppastats.git;a=commitdiff_plain;h=f1a018e08d77e30cda40735c0abb44b778f6893e set transfer encoding to gzip as recommended by LP documentation. --- 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);