2011-05-24 09:18:26 -04:00
|
|
|
#ifndef HEADER_CURL_NON_ASCII_H
|
|
|
|
#define HEADER_CURL_NON_ASCII_H
|
2011-04-19 18:48:20 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-04-19 18:48:20 -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
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2011-04-19 18:48:20 -04:00
|
|
|
|
|
|
|
#ifdef CURL_DOES_CONVERSIONS
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
2011-04-19 18:48:20 -04:00
|
|
|
|
|
|
|
/*
|
2011-04-20 09:23:57 -04:00
|
|
|
* Curl_convert_clone() returns a malloced copy of the source string (if
|
2011-04-19 18:48:20 -04:00
|
|
|
* returning CURLE_OK), with the data converted to network format.
|
|
|
|
*
|
|
|
|
* If no conversion was needed *outbuf may be NULL.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_convert_clone(struct Curl_easy *data,
|
2011-04-19 18:48:20 -04:00
|
|
|
const char *indata,
|
|
|
|
size_t insize,
|
|
|
|
char **outbuf);
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_convert_init(struct Curl_easy *data);
|
|
|
|
void Curl_convert_setup(struct Curl_easy *data);
|
|
|
|
void Curl_convert_close(struct Curl_easy *data);
|
2011-04-19 18:48:20 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_convert_to_network(struct Curl_easy *data,
|
2011-04-19 18:48:20 -04:00
|
|
|
char *buffer, size_t length);
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_convert_from_network(struct Curl_easy *data,
|
2011-04-19 18:48:20 -04:00
|
|
|
char *buffer, size_t length);
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_convert_from_utf8(struct Curl_easy *data,
|
2011-04-19 18:48:20 -04:00
|
|
|
char *buffer, size_t length);
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_convert_form(struct Curl_easy *data, struct FormData *form);
|
2011-04-19 18:48:20 -04:00
|
|
|
#else
|
2011-05-24 09:18:26 -04:00
|
|
|
#define Curl_convert_clone(a,b,c,d) ((void)a, CURLE_OK)
|
2011-09-03 10:06:10 -04:00
|
|
|
#define Curl_convert_init(x) Curl_nop_stmt
|
|
|
|
#define Curl_convert_setup(x) Curl_nop_stmt
|
|
|
|
#define Curl_convert_close(x) Curl_nop_stmt
|
2011-04-19 18:48:20 -04:00
|
|
|
#define Curl_convert_to_network(a,b,c) ((void)a, CURLE_OK)
|
|
|
|
#define Curl_convert_from_network(a,b,c) ((void)a, CURLE_OK)
|
|
|
|
#define Curl_convert_from_utf8(a,b,c) ((void)a, CURLE_OK)
|
|
|
|
#define Curl_convert_form(a,b) CURLE_OK
|
|
|
|
#endif
|
2011-05-24 09:18:26 -04:00
|
|
|
|
|
|
|
#endif /* HEADER_CURL_NON_ASCII_H */
|