diff options
author | Fabian Frank <fabian@pagefault.de> | 2014-02-05 00:21:16 -0800 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-02-05 10:26:12 +0100 |
commit | 133cdd29ea059f6596b387878ce3bc60d501c798 (patch) | |
tree | 54014308fa1b32e618665b286d4f88818e01da3a /lib/http.c | |
parent | ff0547e70e5431a462b0712f68e5e98fb8ae572f (diff) | |
download | curl-133cdd29ea059f6596b387878ce3bc60d501c798.tar.gz |
http2: rely on content-encoding header
A server might respond with a content-encoding header and a response
that was encoded accordingly in HTTP-draft-09/2.0 mode, even if the
client did not send an accept-encoding header earlier. The server might
not send a content-encoding header if the identity encoding was used to
encode the response.
See:
http://tools.ietf.org/html/draft-ietf-httpbis-http2-09#section-9.3
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 2ea6f7ea5..9ce216ef4 100644 --- a/lib/http.c +++ b/lib/http.c @@ -3402,7 +3402,8 @@ CURLcode Curl_http_readwrite_headers(struct SessionHandle *data, } else if(checkprefix("Content-Encoding:", k->p) && - data->set.str[STRING_ENCODING]) { + (data->set.str[STRING_ENCODING] || + conn->httpversion == 20)) { /* * Process Content-Encoding. Look for the values: identity, * gzip, deflate, compress, x-gzip and x-compress. x-gzip and |