mirror of
https://github.com/curl/curl.git
synced 2026-05-16 03:36:20 +03:00
`struct Curl_peer` keeps information about a communication endpoint together. It will replace `conn->host` and `conn->conn_to_host` and proxyinfo host. It will also become part of `struct ssl_peer`. It has a reference counter, so an instance can be shared between connections and filters. Elminiates `conn->host` and `conn->connect_to_host`, used in the proxyinfo structures. Passed to DNS resolution and socks filters, etc. Pass peer to http proxy and socks tunnel filters. Use peer in dns filter and resolving. Make `Curl_peer` a member in the `struct ssl_peer`. Add `docs/internals/PEERS.md` for documentation. Closes #21472
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
#ifndef HEADER_CURL_IDN_H
|
|
#define HEADER_CURL_IDN_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 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
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* 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.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
|
|
struct Curl_str;
|
|
|
|
bool Curl_is_ASCII_name(const char *hostname);
|
|
bool Curl_is_ASCII_str(struct Curl_str *s);
|
|
|
|
#ifdef HEADER_CURL_URLDATA_H /* HACK */
|
|
CURLcode Curl_idnconvert_hostname(struct hostname *host);
|
|
#endif
|
|
|
|
#if defined(USE_LIBIDN2) || defined(USE_WIN32_IDN) || defined(USE_APPLE_IDN)
|
|
#define USE_IDN
|
|
#ifdef HEADER_CURL_URLDATA_H /* HACK */
|
|
void Curl_free_idnconverted_hostname(struct hostname *host);
|
|
#endif
|
|
CURLcode Curl_idn_decode(const char *input, char **output);
|
|
CURLcode Curl_idn_encode(const char *puny, char **output);
|
|
#else
|
|
#define Curl_free_idnconverted_hostname(x)
|
|
#define Curl_idn_decode(x) NULL
|
|
#endif
|
|
|
|
#endif /* HEADER_CURL_IDN_H */
|