2011-09-03 22:06:10 +08:00
|
|
|
#ifndef HEADER_CURL_CONTENT_ENCODING_H
|
|
|
|
#define HEADER_CURL_CONTENT_ENCODING_H
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-08-16 21:24:01 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-09-03 06:31:18 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-09-03 06:31:18 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-08-16 21:24:01 +08:00
|
|
|
*
|
2002-09-03 06:31:18 +08: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 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2002-09-03 06:31:18 +08:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
2013-01-07 02:06:49 +08:00
|
|
|
#include "curl_setup.h"
|
2003-05-12 20:45:14 +08:00
|
|
|
|
2023-10-23 16:33:07 +08:00
|
|
|
struct Curl_cwriter;
|
2003-04-11 16:49:20 +08:00
|
|
|
|
2023-11-07 17:58:08 +08:00
|
|
|
void Curl_all_content_encodings(char *buf, size_t blen);
|
2008-07-12 02:42:30 +08:00
|
|
|
|
2021-01-20 17:58:12 +08:00
|
|
|
CURLcode Curl_build_unencoding_stack(struct Curl_easy *data,
|
2023-01-01 03:41:44 +08:00
|
|
|
const char *enclist, int is_transfer);
|
2011-09-03 22:06:10 +08:00
|
|
|
#endif /* HEADER_CURL_CONTENT_ENCODING_H */
|