2011-09-03 10:06:10 -04:00
|
|
|
#ifndef HEADER_CURL_CONTENT_ENCODING_H
|
|
|
|
#define HEADER_CURL_CONTENT_ENCODING_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-08-16 09:24:01 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-09-02 18:31:18 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-09-03 10:06:10 -04:00
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-09-02 18:31:18 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-08-16 09:24:01 -04:00
|
|
|
*
|
2002-09-02 18:31:18 -04:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2002-09-02 18:31:18 -04:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2003-05-12 08:45:14 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Comma-separated list all supported Content-Encodings ('identity' is implied)
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
#define ALL_CONTENT_ENCODINGS "deflate, gzip"
|
2009-05-11 05:55:28 -04:00
|
|
|
/* force a cleanup */
|
|
|
|
void Curl_unencode_cleanup(struct connectdata *conn);
|
2003-05-12 08:45:14 -04:00
|
|
|
#else
|
|
|
|
#define ALL_CONTENT_ENCODINGS "identity"
|
2011-09-03 10:06:10 -04:00
|
|
|
#define Curl_unencode_cleanup(x) Curl_nop_stmt
|
2003-05-12 08:45:14 -04:00
|
|
|
#endif
|
2002-09-02 18:31:18 -04:00
|
|
|
|
2006-08-19 17:18:36 -04:00
|
|
|
CURLcode Curl_unencode_deflate_write(struct connectdata *conn,
|
2007-11-24 18:16:55 -05:00
|
|
|
struct SingleRequest *req,
|
2002-09-02 18:31:18 -04:00
|
|
|
ssize_t nread);
|
2003-04-11 04:49:20 -04:00
|
|
|
|
|
|
|
CURLcode
|
2006-08-19 17:18:36 -04:00
|
|
|
Curl_unencode_gzip_write(struct connectdata *conn,
|
2007-11-24 18:16:55 -05:00
|
|
|
struct SingleRequest *k,
|
2003-04-11 04:49:20 -04:00
|
|
|
ssize_t nread);
|
2008-07-11 14:42:30 -04:00
|
|
|
|
2009-05-11 05:55:28 -04:00
|
|
|
|
2011-09-03 10:06:10 -04:00
|
|
|
#endif /* HEADER_CURL_CONTENT_ENCODING_H */
|