]> granicus.if.org Git - curl/commitdiff
Dan Fandrich added support for the gzip Content-Encoding for --compressed
authorDaniel Stenberg <daniel@haxx.se>
Thu, 24 Apr 2003 06:34:31 +0000 (06:34 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 24 Apr 2003 06:34:31 +0000 (06:34 +0000)
src/main.c

index f472fbdda8f9327b1e3f6a4b657dc6f3fafddf4f..5e7cdfe77ac0a4f47ed0c1bad1d036068a015b5e 100644 (file)
@@ -363,7 +363,7 @@ static void help(void)
        "    --capath <directory> CA directory (made using c_rehash) to verify\n"
        "                    peer against (SSL)\n"
        "    --ciphers <list> What SSL ciphers to use (SSL)\n"
-       "    --compressed    Request a compressed response (using deflate).");
+       "    --compressed    Request a compressed response (using deflate or gzip).");
   puts("    --connect-timeout <seconds> Maximum time allowed for connection\n"
        "    --create-dirs   Create the necessary local directory hierarchy\n"
        "    --crlf          Convert LF to CRLF in upload. Useful for MVS (OS/390)\n"
@@ -2942,7 +2942,7 @@ operate(struct Configurable *config, int argc, char *argv[])
 
       /* new in curl 7.10 */
       curl_easy_setopt(curl, CURLOPT_ENCODING, 
-                       (config->encoding) ? "deflate" : NULL);
+                       (config->encoding) ? "deflate, gzip" : NULL);
 
       res = curl_easy_perform(curl);