aboutsummaryrefslogtreecommitdiff
path: root/ares
AgeCommit message (Collapse)Author
2006-10-18Sync with lib/setup_once.hYang Tse
2006-10-18Check for USE_WINSOCK instead of WIN32 where the check was doneYang Tse
to verify winsock API availability.
2006-10-18Introduce symbol USE_WINSOCK which will be defined whenYang Tse
using winsock or winsock2 API.
2006-10-18Tor's spell fixesDaniel Stenberg
2006-10-18Replace is*() macros with our own IS*() ones.Yang Tse
Get rid of non ANSI/ISO isascii().
2006-10-18Move definition of IS*() macros to setup_once.hYang Tse
2006-10-14Define HAVE_STRUCT_TIMEVAL as appropriate for platforms that lack autotools ↵Yang Tse
support
2006-10-13Prevent ares_getsock() to overflow if more than 16 sockets are used.Daniel Stenberg
2006-10-13Check for struct timeval at configuration timeYang Tse
2006-10-12avoid an overflow if an excessive amount of servers are usedDaniel Stenberg
2006-10-11Remove redundant __CYGWIN__ symbol checkYang Tse
2006-09-11- Guilherme Balena Versiani: I noted a strange BUG in Win32 portDaniel Stenberg
(ares_init.c/get_iphlpapi_dns_info() function): when I disable the network by hand or disconnect the network cable in Windows 2000 or Windows XP, my application gets 127.0.0.1 as the only name server. The problem comes from 'GetNetworkParams' function, that returns the empty string "" as the only name server in that case. Moreover, the Windows implementation of inet_addr() returns INADDR_LOOPBACK instead of INADDR_NONE.
2006-08-29Brad Spencer didDaniel Stenberg
o made ares_version.h use extern "C" for c++ compilers o fixed compiler warnings in ares_getnameinfo.c o fixed a buffer position init for TCP reads
2006-08-14add missing man pageDaniel Stenberg
2006-08-06Check for network libraries the _same_ way it is done in cURL.Yang Tse
2006-08-05Check for network libraries the same way it is done in cURL.Yang Tse
2006-08-04Minor compatibility fixYang Tse
2006-08-04Fixed comment.Gisle Vanem
2006-08-04Fix compiler warningYang Tse
2006-08-04Avoid redundant check. configure script takes care of not definingYang Tse
HAVE_WINDOWS_H, HAVE_WINSOCK_H, HAVE_WINSOCK2_H, neither HAVE_WS2TCPIP_H when __CYGWIN__ is defined.
2006-08-04Being unable to link or find out recv() or send() args types is a fatal error.Yang Tse
2006-08-03MinGW/MSYS needs lib ws2_32 for proper operation of configure script.Yang Tse
2006-08-03Ravi Pratap fixed ares_getsock() to actually return the proper bitmap andDaniel Stenberg
not always zero!
2006-07-31Avoid the risk of a false positive detection of MSG_NOSIGNAL when cross ↵Yang Tse
compiling a Windows target.
2006-07-31Force compilation failure in case macros sread() or swrite() are not defined.Yang Tse
2006-07-31Provide definitions needed for macros sread() and swrite() in config file.Yang Tse
2006-07-29Fix compiler warnings.Yang Tse
2006-07-29include setup_once.h dependency and adjust to 80 char lines.Yang Tse
2006-07-28Replace send() and recv() with swrite() and sread() macros.Yang Tse
2006-07-28First step trying to avoid the multiple header inclusion and recursion ↵Yang Tse
nightmare. Reintroduce checking for HAVE_MSG_NOSIGNAL in configure script, so that we don't depend on header inclusion order for a valid check.
2006-07-26Provide multiple header inclusion prevention definition __ARES_PRIVATE_HYang Tse
2006-07-26Change multiple header inclusion prevention definition to __ARES_BITNCMP_HYang Tse
2006-07-26Change multiple header inclusion prevention definition to __ARES_INET_NET_PTON_HYang Tse
2006-07-26Sync header with source codeYang Tse
2006-07-25Simplify check for NEED_MALLOC_H, and make more explicit that NEED_MALLOC_H ↵Yang Tse
shall be defined if <malloc.h> header file must be included even when including <stdlib.h>.
2006-07-23Added getopt() processing.Gisle Vanem
2006-07-22Added getopt() processing of [-t {a|aaaa}].Gisle Vanem
2006-07-22Added CVS id.Gisle Vanem
2006-07-222nd try adding CVS id.Gisle Vanem
2006-07-22Added CVS id.Gisle Vanem
2006-07-22Use ares_free_string() to avoid detecting leaks.Gisle Vanem
2006-07-22If CURLDEBUG defined, call curl_memdebug() if $CARES_MEMDEBUG is set.Gisle Vanem
2006-07-14Fix compiler warningYang Tse
2006-07-14Change the ai_addrlen type of struct addrinfo from size_t to socklen_t, per ↵Yang Tse
RFC 3493.
2006-07-11Define NEED_MALLOC_H if including <stdlib.h> is not enough for proper ↵Yang Tse
compilation and <malloc.h> must also be included.
2006-07-07Finally get rid of CURL_CHECK_HEADERS_ONCE since it adds very little value ↵Yang Tse
and has portability issues. Change some shell if...then...fi tests into case...esac tests which demand less resources.
2006-07-07Substitution of the literal '-' is only done if it's the first or last ↵Yang Tse
character.
2006-07-07Using backslashes and slashes in the strings of the sed 'y' command shall be ↵Yang Tse
avoided since its interpretation is not the same across platforms. Now we use the sed 's' command with a bracket expression.
2006-07-07Fix excessive escaping.Yang Tse
2006-07-07Fix CURL_CHECK_HEADERS_ONCEYang Tse