ffd8e127e7
76 private header files renamed to use our standard naming scheme. This commit only does the file renaming. ---------------------------------------- renamed: amigaos.h -> curl_amigaos.h renamed: arpa_telnet.h -> curl_arpa_telnet.h renamed: asyn.h -> curl_asyn.h renamed: axtls.h -> curl_axtls.h renamed: bundles.h -> curl_bundles.h renamed: conncache.h -> curl_conncache.h renamed: connect.h -> curl_connect.h renamed: content_encoding.h -> curl_content_encoding.h renamed: cookie.h -> curl_cookie.h renamed: cyassl.h -> curl_cyassl.h renamed: dict.h -> curl_dict.h renamed: easyif.h -> curl_easyif.h renamed: escape.h -> curl_escape.h renamed: file.h -> curl_file.h renamed: fileinfo.h -> curl_fileinfo.h renamed: formdata.h -> curl_formdata.h renamed: ftp.h -> curl_ftp.h renamed: ftplistparser.h -> curl_ftplistparser.h renamed: getinfo.h -> curl_getinfo.h renamed: gopher.h -> curl_gopher.h renamed: gtls.h -> curl_gtls.h renamed: hash.h -> curl_hash.h renamed: hostcheck.h -> curl_hostcheck.h renamed: hostip.h -> curl_hostip.h renamed: http.h -> curl_http.h renamed: http_chunks.h -> curl_http_chunks.h renamed: http_digest.h -> curl_http_digest.h renamed: http_negotiate.h -> curl_http_negotiate.h renamed: http_proxy.h -> curl_http_proxy.h renamed: if2ip.h -> curl_if2ip.h renamed: imap.h -> curl_imap.h renamed: inet_ntop.h -> curl_inet_ntop.h renamed: inet_pton.h -> curl_inet_pton.h renamed: krb4.h -> curl_krb4.h renamed: llist.h -> curl_llist.h renamed: memdebug.h -> curl_memdebug.h renamed: multiif.h -> curl_multiif.h renamed: netrc.h -> curl_netrc.h renamed: non-ascii.h -> curl_non-ascii.h renamed: nonblock.h -> curl_nonblock.h renamed: nssg.h -> curl_nssg.h renamed: parsedate.h -> curl_parsedate.h renamed: pingpong.h -> curl_pingpong.h renamed: polarssl.h -> curl_polarssl.h renamed: pop3.h -> curl_pop3.h renamed: progress.h -> curl_progress.h renamed: qssl.h -> curl_qssl.h renamed: rawstr.h -> curl_rawstr.h renamed: rtsp.h -> curl_rtsp.h renamed: select.h -> curl_select.h renamed: sendf.h -> curl_sendf.h renamed: setup.h -> curl_setup.h renamed: setup_once.h -> curl_setup_once.h renamed: share.h -> curl_share.h renamed: slist.h -> curl_slist.h renamed: smtp.h -> curl_smtp.h renamed: sockaddr.h -> curl_sockaddr.h renamed: socks.h -> curl_socks.h renamed: speedcheck.h -> curl_speedcheck.h renamed: splay.h -> curl_splay.h renamed: ssh.h -> curl_ssh.h renamed: sslgen.h -> curl_sslgen.h renamed: ssluse.h -> curl_ssluse.h renamed: strdup.h -> curl_strdup.h renamed: strequal.h -> curl_strequal.h renamed: strerror.h -> curl_strerror.h renamed: strtok.h -> curl_strtok.h renamed: strtoofft.h -> curl_strtoofft.h renamed: telnet.h -> curl_telnet.h renamed: tftp.h -> curl_tftp.h renamed: timeval.h -> curl_timeval.h renamed: transfer.h -> curl_transfer.h renamed: url.h -> curl_url.h renamed: urldata.h -> curl_urldata.h renamed: warnless.h -> curl_warnless.h renamed: wildcard.h -> curl_wildcard.h ----------------------------------------
219 lines
7.1 KiB
C
219 lines
7.1 KiB
C
#ifndef HEADER_CURL_HOSTIP_H
|
|
#define HEADER_CURL_HOSTIP_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2012, 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 http://curl.haxx.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.
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include "curl_setup.h"
|
|
#include "curl_hash.h"
|
|
#include "curl_addrinfo.h"
|
|
#include "curl_asyn.h"
|
|
|
|
#ifdef HAVE_SETJMP_H
|
|
#include <setjmp.h>
|
|
#endif
|
|
|
|
#ifdef NETWARE
|
|
#undef in_addr_t
|
|
#define in_addr_t unsigned long
|
|
#endif
|
|
|
|
/* Allocate enough memory to hold the full name information structs and
|
|
* everything. OSF1 is known to require at least 8872 bytes. The buffer
|
|
* required for storing all possible aliases and IP numbers is according to
|
|
* Stevens' Unix Network Programming 2nd edition, p. 304: 8192 bytes!
|
|
*/
|
|
#define CURL_HOSTENT_SIZE 9000
|
|
|
|
#define CURL_TIMEOUT_RESOLVE 300 /* when using asynch methods, we allow this
|
|
many seconds for a name resolve */
|
|
|
|
#define CURL_ASYNC_SUCCESS CURLE_OK
|
|
|
|
struct addrinfo;
|
|
struct hostent;
|
|
struct SessionHandle;
|
|
struct connectdata;
|
|
|
|
/*
|
|
* Curl_global_host_cache_init() initializes and sets up a global DNS cache.
|
|
* Global DNS cache is general badness. Do not use. This will be removed in
|
|
* a future version. Use the share interface instead!
|
|
*
|
|
* Returns a struct curl_hash pointer on success, NULL on failure.
|
|
*/
|
|
struct curl_hash *Curl_global_host_cache_init(void);
|
|
void Curl_global_host_cache_dtor(void);
|
|
|
|
struct Curl_dns_entry {
|
|
Curl_addrinfo *addr;
|
|
/* timestamp == 0 -- entry not in hostcache
|
|
timestamp != 0 -- entry is in hostcache */
|
|
time_t timestamp;
|
|
long inuse; /* use-counter, make very sure you decrease this
|
|
when you're done using the address you received */
|
|
};
|
|
|
|
/*
|
|
* Curl_resolv() returns an entry with the info for the specified host
|
|
* and port.
|
|
*
|
|
* The returned data *MUST* be "unlocked" with Curl_resolv_unlock() after
|
|
* use, or we'll leak memory!
|
|
*/
|
|
/* return codes */
|
|
#define CURLRESOLV_TIMEDOUT -2
|
|
#define CURLRESOLV_ERROR -1
|
|
#define CURLRESOLV_RESOLVED 0
|
|
#define CURLRESOLV_PENDING 1
|
|
int Curl_resolv(struct connectdata *conn, const char *hostname,
|
|
int port, struct Curl_dns_entry **dnsentry);
|
|
int Curl_resolv_timeout(struct connectdata *conn, const char *hostname,
|
|
int port, struct Curl_dns_entry **dnsentry,
|
|
long timeoutms);
|
|
|
|
#ifdef CURLRES_IPV6
|
|
/*
|
|
* Curl_ipv6works() returns TRUE if ipv6 seems to work.
|
|
*/
|
|
bool Curl_ipv6works(void);
|
|
#else
|
|
#define Curl_ipv6works() FALSE
|
|
#endif
|
|
|
|
/*
|
|
* Curl_ipvalid() checks what CURL_IPRESOLVE_* requirements that might've
|
|
* been set and returns TRUE if they are OK.
|
|
*/
|
|
bool Curl_ipvalid(struct connectdata *conn);
|
|
|
|
|
|
/*
|
|
* Curl_getaddrinfo() is the generic low-level name resolve API within this
|
|
* source file. There are several versions of this function - for different
|
|
* name resolve layers (selected at build-time). They all take this same set
|
|
* of arguments
|
|
*/
|
|
Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn,
|
|
const char *hostname,
|
|
int port,
|
|
int *waitp);
|
|
|
|
|
|
/* unlock a previously resolved dns entry */
|
|
void Curl_resolv_unlock(struct SessionHandle *data,
|
|
struct Curl_dns_entry *dns);
|
|
|
|
/* for debugging purposes only: */
|
|
void Curl_scan_cache_used(void *user, void *ptr);
|
|
|
|
/* make a new dns cache and return the handle */
|
|
struct curl_hash *Curl_mk_dnscache(void);
|
|
|
|
/* prune old entries from the DNS cache */
|
|
void Curl_hostcache_prune(struct SessionHandle *data);
|
|
|
|
/* Return # of adresses in a Curl_addrinfo struct */
|
|
int Curl_num_addresses (const Curl_addrinfo *addr);
|
|
|
|
#if defined(CURLDEBUG) && defined(HAVE_GETNAMEINFO)
|
|
int curl_dogetnameinfo(GETNAMEINFO_QUAL_ARG1 GETNAMEINFO_TYPE_ARG1 sa,
|
|
GETNAMEINFO_TYPE_ARG2 salen,
|
|
char *host, GETNAMEINFO_TYPE_ARG46 hostlen,
|
|
char *serv, GETNAMEINFO_TYPE_ARG46 servlen,
|
|
GETNAMEINFO_TYPE_ARG7 flags,
|
|
int line, const char *source);
|
|
#endif
|
|
|
|
/* IPv4 threadsafe resolve function used for synch and asynch builds */
|
|
Curl_addrinfo *Curl_ipv4_resolve_r(const char * hostname, int port);
|
|
|
|
CURLcode Curl_async_resolved(struct connectdata *conn,
|
|
bool *protocol_connect);
|
|
|
|
#ifndef CURLRES_ASYNCH
|
|
#define Curl_async_resolved(x,y) CURLE_OK
|
|
#endif
|
|
|
|
/*
|
|
* Curl_addrinfo_callback() is used when we build with any asynch specialty.
|
|
* Handles end of async request processing. Inserts ai into hostcache when
|
|
* status is CURL_ASYNC_SUCCESS. Twiddles fields in conn to indicate async
|
|
* request completed whether successful or failed.
|
|
*/
|
|
CURLcode Curl_addrinfo_callback(struct connectdata *conn,
|
|
int status,
|
|
Curl_addrinfo *ai);
|
|
|
|
/*
|
|
* Curl_printable_address() returns a printable version of the 1st address
|
|
* given in the 'ip' argument. The result will be stored in the buf that is
|
|
* bufsize bytes big.
|
|
*/
|
|
const char *Curl_printable_address(const Curl_addrinfo *ip,
|
|
char *buf, size_t bufsize);
|
|
|
|
/*
|
|
* Curl_cache_addr() stores a 'Curl_addrinfo' struct in the DNS cache.
|
|
*
|
|
* Returns the Curl_dns_entry entry pointer or NULL if the storage failed.
|
|
*/
|
|
struct Curl_dns_entry *
|
|
Curl_cache_addr(struct SessionHandle *data, Curl_addrinfo *addr,
|
|
const char *hostname, int port);
|
|
|
|
#ifndef INADDR_NONE
|
|
#define CURL_INADDR_NONE (in_addr_t) ~0
|
|
#else
|
|
#define CURL_INADDR_NONE INADDR_NONE
|
|
#endif
|
|
|
|
#ifdef HAVE_SIGSETJMP
|
|
/* Forward-declaration of variable defined in hostip.c. Beware this
|
|
* is a global and unique instance. This is used to store the return
|
|
* address that we can jump back to from inside a signal handler.
|
|
* This is not thread-safe stuff.
|
|
*/
|
|
extern sigjmp_buf curl_jmpenv;
|
|
#endif
|
|
|
|
/*
|
|
* Function provided by the resolver backend to set DNS servers to use.
|
|
*/
|
|
CURLcode Curl_set_dns_servers(struct SessionHandle *data, char *servers);
|
|
|
|
/*
|
|
* Clean off entries from the cache
|
|
*/
|
|
void Curl_hostcache_clean(struct SessionHandle *data);
|
|
|
|
/*
|
|
* Destroy the hostcache of this handle.
|
|
*/
|
|
void Curl_hostcache_destroy(struct SessionHandle *data);
|
|
|
|
/*
|
|
* Populate the cache with specified entries from CURLOPT_RESOLVE.
|
|
*/
|
|
CURLcode Curl_loadhostpairs(struct SessionHandle *data);
|
|
|
|
#endif /* HEADER_CURL_HOSTIP_H */
|