Mercurial > dillo_port1.3
view src/dns.h @ 1918:55af06da5523
merge in recent changes from main repo
author | corvid <corvid@lavabit.com> |
---|---|
date | Fri, 25 Feb 2011 08:37:13 +0000 |
parents | 879c110ecb57 |
children |
line wrap: on
line source
#ifndef __DNS_H__ #define __DNS_H__ #include <netinet/in.h> #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ typedef void (*DnsCallback_t)(int status, Dlist *addr_list, void *data); void a_Dns_init (void); void a_Dns_freeall(void); void a_Dns_resolve(const char *hostname, DnsCallback_t cb_func, void *cb_data); #ifdef ENABLE_IPV6 # define DILLO_ADDR_MAX sizeof(struct in6_addr) #else # define DILLO_ADDR_MAX sizeof(struct in_addr) #endif typedef struct _DilloHost { int af; int alen; char data[DILLO_ADDR_MAX]; } DilloHost; void a_Dns_dillohost_to_string(DilloHost *host, char *dst, size_t size); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __DNS_H__ */