summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-11-10Replace IsNT with IS_NT().Gisle Vanem5-210/+218
Return correct timeval in windows_port.c. Squelch gcc warnings: use 'ares_socket_t' in ares_fds.c. Don't cast a 'lvalue' in ares_init.c.
2004-11-09fix CURL_EXTERN for debug buildsDaniel Stenberg1-0/+4
2004-11-07two post-1.2.1 changesDaniel Stenberg1-0/+9
2004-11-07added ares_cancel and ares_versionDaniel Stenberg2-0/+28
2004-10-26mention incompatibilities with aresDaniel Stenberg2-1/+4
2004-10-24ignore thisDaniel Stenberg1-0/+1
2004-10-24maketgz now creates a ares_version.h.dist file with the given version dataDaniel Stenberg2-0/+30
properly set, and the Makefile.am is now fixed to use that when building a new package with make dist.
2004-10-201.2.1 release timeDaniel Stenberg1-0/+2
2004-10-06removed tabs and trailing whitespace from sourceDaniel Stenberg20-1037/+1037
2004-09-28- Henrik Stoerner fix: got a report that Tru64 Unix (the unix from DigitalDaniel Stenberg2-3/+28
when they made Alpha's) uses /etc/svc.conf for the purpose fixed below for other OSes. He made c-ares check for and understand it if present. - Now c-ares will use local host name lookup _before_ DNS resolving by default if nothing else is told.
2004-09-26- Henrik Stoerner: found out that C-ARES does not look at the /etc/host.confDaniel Stenberg2-8/+50
file to determine the sequence in which to search /etc/hosts and DNS. So on systems where this order is defined by /etc/host.conf instead of a "lookup" entry in /etc/resolv.conf, C-ARES will always default to looking in DNS first, and /etc/hosts second. c-ares now looks at 1) resolv.conf (for the "lookup" line); 2) nsswitch.fon (for the "hosts:" line); 3) host.conf (for the "order" line). First match wins.
2004-09-26Dominick Meglio host file path discovery patch for windowsDaniel Stenberg4-13/+48
2004-09-14ignore moreDaniel Stenberg1-0/+5
2004-09-03fixed nasty warnings with gcc 3.3.Gunter Knauf1-1/+1
2004-08-30mention Gisle's recent fixesDaniel Stenberg1-0/+8
2004-08-29Removed ares_free_errmem.c from MSCV project files.Gisle Vanem2-372/+358
Fixed line-endings to CR-LF.
2004-08-20More patches for Watt-32 on Win32; don't include "nameser.h".Gisle Vanem5-5/+15
2004-08-20No WSAGetLastError() on Watt-32/DOSGisle Vanem1-1/+1
2004-08-20No <sys/uio.h> on DOS/Win32Gisle Vanem1-7/+1
2004-08-20Changes for Watt-32 on Windows. I've assumed ConfigureGisle Vanem17-48/+88
sets the required HAVE_xx defines for non-DOS/Win targets.
2004-08-19ZLIB_ROOT not neededGisle Vanem1-3/+1
2004-08-19My first CVS commit just to see if this works.Gisle Vanem1-56/+52
BTW. Used eclipse IDE fo this, which really kicks ass.
2004-08-13mention Harshal Pradhan's windows fixDaniel Stenberg1-0/+5
2004-08-13Harshal Pradhan made minor syntax change to make this build with MSVC 7.1Daniel Stenberg1-1/+1
2004-08-10ignore more filesDaniel Stenberg1-0/+9
2004-07-29variable type fixDaniel Stenberg1-13/+14
2004-07-29removed C++ comment to please picky source checkersDaniel Stenberg1-1/+3
2004-07-24--enable-debug builds static only, Gisle fixed a memory leak and moreDaniel Stenberg1-0/+17
2004-07-24Gisle Vanem:Daniel Stenberg4-19/+61
Basically in loops like handle_errors(), 'query->next' was assigned a local variable and then query was referenced after the memory was freed by next_server(). I've changed that so next_server() and end_query() returns the next query. So callers should use this ret-value. The next problem was that 'server->tcp_buffer_pos' had a random value at entry to 1st recv() (luckily causing Winsock to return ENOBUFS). I've also added a ares_writev() for Windows to streamline the code a bit more.
2004-07-24--enable-debug now makes the lib built static only since otherwise weDaniel Stenberg1-8/+11
get problems
2004-07-24generate the new configure betterDaniel Stenberg1-1/+1
2004-07-23now generated by automakeDaniel Stenberg1-783/+0
2004-07-22- Fixed a few variable return types for some system calls. Made configureDaniel Stenberg38-3083/+1022
check for ssize_t to make it possible to use that when receiving the send() error code. This is necessary to prevent compiler warnings on some systems. - Made configure create config.h, and all source files now include setup.h that might include the proper config.h (or a handicrafted alternative). - Switched to 'ares_socket_t' type for sockets in ares, since Windows don't use 'int' for that. - automake-ified and libool-ified c-ares. Now it builds libcares as a shared lib on most platforms if wanted. (This bloated the size of the release archive with another 200K!) - Makefile.am now uses Makefile.inc for the c sources, h headers and man pages, to make it easier for other makefiles to use the exact same set of files. - Adjusted 'maketgz' to use the new automake magic when building distribution archives.
2004-07-11minor cleanup.Gunter Knauf1-28/+6
2004-07-11added ifdef for NetWare to ares.h.Gunter Knauf2-2/+1
2004-07-06mingw and netware makefiles added by Gunter KnaufDaniel Stenberg1-0/+2
2004-07-05minor cosmetic fix.Gunter Knauf1-2/+2
2004-07-05added MingW32 makefile.Gunter Knauf1-0/+75
2004-07-05try to relax linux build host detection.Gunter Knauf1-1/+1
2004-07-04Günter Knauf made c-ares build and run on Novell Netware.Daniel Stenberg1-0/+3
2004-07-04added NetWare section for paths.Gunter Knauf1-0/+5
2004-07-04update to build both test apps.Gunter Knauf1-36/+43
2004-07-03minor fix for compiling on Linux.Gunter Knauf1-3/+1
2004-07-03added few ifdefs to make it usable for NetWare.Gunter Knauf1-1/+7
2004-07-03added NetWare makefile.Gunter Knauf1-0/+335
2004-07-01djgpp fixes by GisleDaniel Stenberg5-2/+22
2004-07-01Gisle's win32-fix. 'errno' is not used for errors when socket() fails onDaniel Stenberg1-4/+12
Windows.
2004-07-01Gisle added makefile for djgpp buildsDaniel Stenberg2-0/+57
2004-07-01Gisle's djgpp magicDaniel Stenberg1-0/+3
2004-07-01Gisle Vanem made this build fine with djgpp and the Watt-32 stack.Daniel Stenberg3-1/+28