2011-09-03 18:06:10 +04:00
|
|
|
#ifndef HEADER_CURL_CONTENT_ENCODING_H
|
|
|
|
#define HEADER_CURL_CONTENT_ENCODING_H
|
2002-09-03 15:52:59 +04:00
|
|
|
/***************************************************************************
|
2004-08-16 17:24:01 +04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-09-03 02:31:18 +04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 15:51:48 +03:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-09-03 02:31:18 +04:00
|
|
|
*
|
2002-09-03 15: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
|
2020-11-04 16:02:01 +03:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-08-16 17:24:01 +04:00
|
|
|
*
|
2002-09-03 02: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 15:52:59 +04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2002-09-03 02: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 15:52:59 +04:00
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 12:16:50 +03:00
|
|
|
*
|
2002-09-03 15:52:59 +04:00
|
|
|
***************************************************************************/
|
2013-01-06 22:06:49 +04:00
|
|
|
#include "curl_setup.h"
|
2003-05-12 16:45:14 +04:00
|
|
|
|
2023-10-23 11:33:07 +03:00
|
|
|
struct Curl_cwriter;
|
2003-04-11 12:49:20 +04:00
|
|
|
|
2023-11-07 12:58:08 +03:00
|
|
|
void Curl_all_content_encodings(char *buf, size_t blen);
|
2008-07-11 22:42:30 +04:00
|
|
|
|
2021-01-20 12:58:12 +03:00
|
|
|
CURLcode Curl_build_unencoding_stack(struct Curl_easy *data,
|
2022-12-31 22:41:44 +03:00
|
|
|
const char *enclist, int is_transfer);
|
2011-09-03 18:06:10 +04:00
|
|
|
#endif /* HEADER_CURL_CONTENT_ENCODING_H */
|