Revert "Imported Upstream version 7.53.1"
[platform/upstream/curl.git] / docs / libcurl / opts / CURLOPT_ACCEPT_ENCODING.3
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
9 .\" *
10 .\" * This software is licensed as described in the file COPYING, which
11 .\" * you should have received as part of this distribution. The terms
12 .\" * are also available at https://curl.haxx.se/docs/copyright.html.
13 .\" *
14 .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 .\" * copies of the Software, and permit persons to whom the Software is
16 .\" * furnished to do so, under the terms of the COPYING file.
17 .\" *
18 .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 .\" * KIND, either express or implied.
20 .\" *
21 .\" **************************************************************************
22 .\"
23 .TH CURLOPT_ACCEPT_ENCODING 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
24 .SH NAME
25 CURLOPT_ACCEPT_ENCODING \- enables automatic decompression of HTTP downloads
26 .SH SYNOPSIS
27 #include <curl/curl.h>
28
29 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_ACCEPT_ENCODING, char *enc);
30 .SH DESCRIPTION
31 Pass a char * argument specifying what encoding you'd like.
32
33 Sets the contents of the Accept-Encoding: header sent in a HTTP request, and
34 enables decoding of a response when a Content-Encoding: header is received.
35 Three encodings are supported: \fIidentity\fP, meaning non-compressed,
36 \fIdeflate\fP which requests the server to compress its response using the
37 zlib algorithm, and \fIgzip\fP which requests the gzip algorithm.
38
39 If a zero-length string is set like "", then an Accept-Encoding: header
40 containing all built-in supported encodings is sent.
41
42 Set this option to NULL to explicitly disable it, which makes libcurl not send
43 an Accept-Encoding: header and not decompress contents automatically.
44
45 You can also opt to just include the Accept-Encoding: header in your request
46 with \fICURLOPT_HTTPHEADER(3)\fP but then there will be no automatic
47 decompressing when receiving data.
48
49 This is a request, not an order; the server may or may not do it.  This option
50 must be set (to any non-NULL value) or else any unsolicited encoding done by
51 the server is ignored.
52
53 Servers might respond with Content-Encoding even without getting a
54 Accept-Encoding: in the request. Servers might respond with a different
55 Content-Encoding than what was asked for in the request.
56
57 The Content-Length: servers send for a compressed response is supposed to
58 indicate the length of the compressed content so when auto decoding is enabled
59 it may not match the sum of bytes reported by the write callbacks (although,
60 sending the length of the non-compressed content is a common server mistake).
61 .SH DEFAULT
62 NULL
63 .SH PROTOCOLS
64 HTTP
65 .SH EXAMPLE
66 .nf
67 CURL *curl = curl_easy_init();
68 if(curl) {
69   curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
70
71   /* enable all supported built-in compressions */
72   curl_easy_setopt(curl, CURLOPT_ACCEPT_ENCODING, "");
73
74   /* Perform the request */
75   curl_easy_perform(curl);
76 }
77 .fi
78 .SH AVAILABILITY
79 This option was called CURLOPT_ENCODING before 7.21.6
80 .SH RETURN VALUE
81 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
82 CURLE_OUT_OF_MEMORY if there was insufficient heap space.
83 .SH "SEE ALSO"
84 .BR CURLOPT_TRANSFER_ENCODING "(3), " CURLOPT_HTTPHEADER "(3), "
85 .BR CURLOPT_HTTP_CONTENT_DECODING "(3), "