cmake/Utilities/cmcurl/lib/curl_addrinfo.h

109 lines
3.2 KiB
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
#ifndef HEADER_CURL_ADDRINFO_H
#define HEADER_CURL_ADDRINFO_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2023-07-02 19:51:09 +02:00
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
2015-04-27 22:25:09 +02:00
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
2021-09-14 00:13:48 +02:00
* are also available at https://curl.se/docs/copyright.html.
2015-04-27 22:25:09 +02: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.
*
2022-11-16 20:14:03 +01:00
* SPDX-License-Identifier: curl
*
2015-04-27 22:25:09 +02:00
***************************************************************************/
#include "curl_setup.h"
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETDB_H
# include <netdb.h>
#endif
#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
#endif
#ifdef __VMS
# include <in.h>
# include <inet.h>
# include <stdlib.h>
#endif
/*
* Curl_addrinfo is our internal struct definition that we use to allow
2024-11-11 15:18:55 +01:00
* consistent internal handling of this data. We use this even when the system
* provides an addrinfo structure definition. We use this for all sorts of
* IPv4 and IPV6 builds.
2015-04-27 22:25:09 +02:00
*/
struct Curl_addrinfo {
int ai_flags;
int ai_family;
int ai_socktype;
int ai_protocol;
curl_socklen_t ai_addrlen; /* Follow rfc3493 struct addrinfo */
char *ai_canonname;
struct sockaddr *ai_addr;
struct Curl_addrinfo *ai_next;
};
void
2020-08-30 11:54:41 +02:00
Curl_freeaddrinfo(struct Curl_addrinfo *cahead);
2015-04-27 22:25:09 +02:00
#ifdef HAVE_GETADDRINFO
int
Curl_getaddrinfo_ex(const char *nodename,
const char *servname,
const struct addrinfo *hints,
2020-08-30 11:54:41 +02:00
struct Curl_addrinfo **result);
2015-04-27 22:25:09 +02:00
#endif
2020-08-30 11:54:41 +02:00
struct Curl_addrinfo *
2015-04-27 22:25:09 +02:00
Curl_he2ai(const struct hostent *he, int port);
2020-08-30 11:54:41 +02:00
struct Curl_addrinfo *
2015-04-27 22:25:09 +02:00
Curl_ip2addr(int af, const void *inaddr, const char *hostname, int port);
2020-08-30 11:54:41 +02:00
struct Curl_addrinfo *Curl_str2addr(char *dotted, int port);
2015-04-27 22:25:09 +02:00
2015-11-17 17:22:37 +01:00
#ifdef USE_UNIX_SOCKETS
2020-08-30 11:54:41 +02:00
struct Curl_addrinfo *Curl_unix2addr(const char *path, bool *longpath,
bool abstract);
2015-11-17 17:22:37 +01:00
#endif
2016-09-11 17:22:32 +02:00
#if defined(CURLDEBUG) && defined(HAVE_GETADDRINFO) && \
defined(HAVE_FREEADDRINFO)
2015-04-27 22:25:09 +02:00
void
2019-11-11 23:01:05 +01:00
curl_dbg_freeaddrinfo(struct addrinfo *freethis, int line, const char *source);
2015-04-27 22:25:09 +02:00
#endif
#if defined(CURLDEBUG) && defined(HAVE_GETADDRINFO)
int
2019-11-11 23:01:05 +01:00
curl_dbg_getaddrinfo(const char *hostname, const char *service,
const struct addrinfo *hints, struct addrinfo **result,
int line, const char *source);
2015-04-27 22:25:09 +02:00
#endif
2016-09-11 17:22:32 +02:00
#ifdef HAVE_GETADDRINFO
#ifdef USE_RESOLVE_ON_IPS
2020-08-30 11:54:41 +02:00
void Curl_addrinfo_set_port(struct Curl_addrinfo *addrinfo, int port);
2016-09-11 17:22:32 +02:00
#else
#define Curl_addrinfo_set_port(x,y)
#endif
#endif
2015-04-27 22:25:09 +02:00
#endif /* HEADER_CURL_ADDRINFO_H */