summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-11-22Added a check in configure that verifies if <signal.h> is available,Yang Tse3-0/+54
defining HAVE_SIGNAL_H if the header is available. Added a check in configure that tests if the sig_atomic_t type is available, defining HAVE_SIG_ATOMIC_T if it is available. Providing a suitable default in setup_once.h if not available. Added a check in configure that tests if the sig_atomic_t type is already defined as volatile, defining HAVE_SIG_ATOMIC_T_VOLATILE if it is available and already defined as volatile.
2006-11-11we did 1.3.2 and are now on the 1.3.3 track!Daniel Stenberg1-2/+2
2006-11-07Moved select_s() to Makefile.dj since select() is used in applications.Gisle Vanem2-2/+1
2006-11-06avoid a couple of potential zero size memory allocationsYang Tse4-35/+70
2006-11-05mention the areslib.dsp fixDaniel Stenberg1-0/+6
2006-11-05add the recent crowd of contributorsDaniel Stenberg1-0/+6
2006-11-05Andreas Rieke fixed back the correct line endings!Daniel Stenberg1-240/+240
2006-11-03stand clear for release 1.3.2Daniel Stenberg1-0/+2
2006-11-03Andreas Rieke added missing file and changed line endingsDaniel Stenberg1-236/+240
2006-10-31Updated dependency output.Gisle Vanem1-2/+2
2006-10-31Updated dependencies to not include config.h.Gisle Vanem1-124/+118
2006-10-31Removed unneeded stuff.Gisle Vanem1-18/+0
2006-10-31Added Watt-32 section to fix things for Watt32+Win32 targets.Gisle Vanem1-0/+10
2006-10-31Don't include "nameser.h" for Watt32. Use the normal BSD-socket headers.Gisle Vanem2-3/+2
2006-10-31Added definition of select() for Watt32.Gisle Vanem1-0/+1
2006-10-31Rewritten to use ../packages/DOS/common.dj.Gisle Vanem1-25/+166
2006-10-27Sync with lib/setup_once.hYang Tse1-6/+0
2006-10-25Fixed "'x' might be used uninitialized in this function" warning.Gisle Vanem1-9/+9
Removed trailing whitespace.
2006-10-25Added '-d' option for Watt32 targets. Added cvs id.Gisle Vanem1-1/+9
2006-10-25Compiler warning fixYang Tse1-1/+1
2006-10-18Sync with lib/setup_once.hYang Tse1-0/+1
2006-10-18Check for USE_WINSOCK instead of WIN32 where the check was doneYang Tse4-6/+6
to verify winsock API availability.
2006-10-18Introduce symbol USE_WINSOCK which will be defined whenYang Tse1-0/+16
using winsock or winsock2 API.
2006-10-18Tor's spell fixesDaniel Stenberg1-1/+1
2006-10-18Replace is*() macros with our own IS*() ones.Yang Tse5-39/+38
Get rid of non ANSI/ISO isascii().
2006-10-18Move definition of IS*() macros to setup_once.hYang Tse1-2/+25
2006-10-14Define HAVE_STRUCT_TIMEVAL as appropriate for platforms that lack autotools ↵Yang Tse3-1/+23
support
2006-10-13Prevent ares_getsock() to overflow if more than 16 sockets are used.Daniel Stenberg1-0/+4
2006-10-13Check for struct timeval at configuration timeYang Tse2-0/+60
2006-10-12avoid an overflow if an excessive amount of servers are usedDaniel Stenberg1-6/+7
2006-10-11Remove redundant __CYGWIN__ symbol checkYang Tse1-1/+1
2006-09-11- Guilherme Balena Versiani: I noted a strange BUG in Win32 portDaniel Stenberg2-1/+12
(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 Stenberg4-2/+19
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 Stenberg1-1/+3
2006-08-06Check for network libraries the _same_ way it is done in cURL.Yang Tse1-0/+16
2006-08-05Check for network libraries the same way it is done in cURL.Yang Tse1-15/+108
2006-08-04Minor compatibility fixYang Tse1-4/+4
2006-08-04Fixed comment.Gisle Vanem1-1/+1
2006-08-04Fix compiler warningYang Tse1-2/+10
2006-08-04Avoid redundant check. configure script takes care of not definingYang Tse1-2/+4
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 Tse1-4/+6
2006-08-03MinGW/MSYS needs lib ws2_32 for proper operation of configure script.Yang Tse1-0/+12
2006-08-03Ravi Pratap fixed ares_getsock() to actually return the proper bitmap andDaniel Stenberg2-3/+6
not always zero!
2006-07-31Avoid the risk of a false positive detection of MSG_NOSIGNAL when cross ↵Yang Tse1-0/+15
compiling a Windows target.
2006-07-31Force compilation failure in case macros sread() or swrite() are not defined.Yang Tse1-0/+10
2006-07-31Provide definitions needed for macros sread() and swrite() in config file.Yang Tse1-0/+13
2006-07-29Fix compiler warnings.Yang Tse1-5/+7
2006-07-29include setup_once.h dependency and adjust to 80 char lines.Yang Tse1-40/+47
2006-07-28Replace send() and recv() with swrite() and sread() macros.Yang Tse2-13/+10
2006-07-28First step trying to avoid the multiple header inclusion and recursion ↵Yang Tse5-1/+144
nightmare. Reintroduce checking for HAVE_MSG_NOSIGNAL in configure script, so that we don't depend on header inclusion order for a valid check.