Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-29 | Fix compiler warnings. | Yang Tse | |
2006-07-28 | Replace send() and recv() with swrite() and sread() macros. | Yang Tse | |
2006-07-22 | 2nd try adding CVS id. | Gisle Vanem | |
2006-07-14 | Fix compiler warning | Yang Tse | |
2006-06-19 | Handle EAGAIN/EWOULDBLOCK readiness errors, which can occur for both TCP and | William Ahern | |
UDP even when a poll(2) or select(2) suggest otherwise. | |||
2006-05-03 | Nick Mathewson added the ARES_OPT_SOCK_STATE_CB option that when set makes | Daniel Stenberg | |
c-ares call a callback on socket state changes. A better way than the ares_getsock() to get full control over the socket state. | |||
2005-12-20 | Changes for PellesC for Win32. It needs <unistd.h> for 'ssize_t'. Hence the | Gisle Vanem | |
rearrangement in ares_process.c. | |||
2005-12-09 | Fix compiler warning | Yang Tse | |
2005-11-25 | read_tcp_data() fix to get the proper buffer pointer and size | Daniel Stenberg | |
2005-11-25 | Yang Tse: fixed compiler warnings | Daniel Stenberg | |
2005-08-10 | make ares compile again for NetWare. | Gunter Knauf | |
2005-06-03 | FIONBIO is in sys/ioctl.h on AIX | Daniel Stenberg | |
2005-06-02 | sigh, define TRUE if not already | Daniel Stenberg | |
2005-06-02 | William Ahern: | Daniel Stenberg | |
Make UDP sockets non-blocking. I've confirmed that at least on Linux 2.4 a read event can come back from poll() on a valid SOCK_DGRAM socket but recv(2) will still block. This patch doesn't ignore EAGAIN in read_udp_packets(), though maybe it should. (This patch was edited by Daniel Stenberg and a new configure test was added (imported from curl's configure) to properly detect what non-blocking socket approach to use.) | |||
2005-04-06 | Tupone Alfredo fixed includes of arpa/nameser_compat.h to build fine on Mac OS | Daniel Stenberg | |
X. | |||
2005-03-13 | Prevent gcc warning. | Gisle Vanem | |
2004-10-06 | removed tabs and trailing whitespace from source | Daniel Stenberg | |
2004-08-20 | No WSAGetLastError() on Watt-32/DOS | Gisle Vanem | |
2004-08-20 | Changes for Watt-32 on Windows. I've assumed Configure | Gisle Vanem | |
sets the required HAVE_xx defines for non-DOS/Win targets. | |||
2004-07-29 | variable type fix | Daniel Stenberg | |
2004-07-24 | Gisle Vanem: | Daniel Stenberg | |
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-22 | - Fixed a few variable return types for some system calls. Made configure | Daniel Stenberg | |
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-01 | Gisle's win32-fix. 'errno' is not used for errors when socket() fails on | Daniel Stenberg | |
Windows. | |||
2004-07-01 | Gisle Vanem made this build fine with djgpp and the Watt-32 stack. | Daniel Stenberg | |
2004-02-27 | minor size_t fix to kill a warning | Daniel Stenberg | |
2004-02-23 | make ares_expand_name() take a long * instead of an int *, since we do | Daniel Stenberg | |
pointer arithmetic (ptr1 - ptr2) and to do that properly on 64bit we need long | |||
2004-02-04 | don't use 'sin' as variable name as the picky compiler warnings complain | Daniel Stenberg | |
about it shadowing the function sin() | |||
2004-02-02 | remove rcsid stuff from c files, it serves no useful purpose | Daniel Stenberg | |
2004-01-29 | Dirk Manske fixed a flaw in the setting of the socket to non-blocking | Daniel Stenberg | |
2003-10-07 | ares 1.1.1 with collected applied patches | Daniel Stenberg | |