Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-08 | fix compiler warning | Yang Tse | |
2010-05-20 | Fix build warnings. | Ben Greear | |
Signed-off-by: Ben Greear <greearb@candelatech.com> | |||
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2010-03-11 | fix compiler warning | Yang Tse | |
2010-01-26 | - Mike Crowe made libcurl return CURLE_COULDNT_RESOLVE_PROXY when it is the | Daniel Stenberg | |
proxy that cannot be resolved when using c-ares. This matches the behaviour when not using c-ares. | |||
2010-01-25 | Constantine Sapuntzakis threaded resolver enhancements | Yang Tse | |
2010-01-22 | Constantine Sapuntzakis refactoring of async callbacks, allowing | Yang Tse | |
removal of Curl_addrinfo_copy(), Curl_addrinfo6_callback(), and Curl_addrinfo4_callback() | |||
2010-01-06 | - Make sure the progress callback is called repeatedly even during very slow | Daniel Stenberg | |
name resolves when c-ares is used for resolving. | |||
2009-12-30 | VMS specific preprocessor symbol checking adjustments | Yang Tse | |
2009-09-15 | Revert Joshua Kwan's patch committed 11 Sep 2009. | Yang Tse | |
Some systems poll function sets POLLHUP in revents without setting POLLIN, and sets POLLERR without setting POLLIN and POLLOUT. In some libcurl code execution paths this could trigger busy wait loops with high CPU usage until a timeout condition aborted the loop. The reverted patch addressed the above issue for a very specific case, when awaiting c-ares to resolve. A libcurl-wide fix superceeds this one. http://cool.haxx.se/cvs.cgi/curl/lib/select.c.diff?r1=1.52&r2=1.53 | |||
2009-09-11 | Joshua Kwan provided a patch to pass POLLERR / POLLHUP back to c-ares. | Gunter Knauf | |
This fixes a loop problem with high CPU usage. | |||
2009-04-21 | libcurl's memory.h renamed to curl_memory.h | Yang Tse | |
2009-04-21 | Moved potential inclusion of system's malloc.h and memory.h header files to | Yang Tse | |
setup_once.h. Inclusion of each header file is based on the definition of NEED_MALLOC_H and NEED_MEMORY_H respectively. | |||
2009-04-14 | use HAVE_LIMITS_H symbol to protect limits.h inclusion | Yang Tse | |
2009-04-14 | include <limits.h> for INT_MAX definition | Yang Tse | |
2009-01-31 | - When building with c-ares 1.6.1 (not yet released) or later and IPv6 support | Daniel Stenberg | |
enabled, we can now take advantage of its brand new AF_UNSPEC support in ares_gethostbyname(). This makes test case 241 finally run fine for me wtih this setup since it now parses the "::1 ip6-localhost" line fine in my /etc/hosts file! | |||
2008-11-06 | Merged existing IPv4 and IPv6 Curl_ip2addr functions into a single one | Yang Tse | |
which now also takes a protocol address family argument. | |||
2008-11-01 | Daniel Johnson reported and fixed ipv4 name resolves when libcurl is built | Daniel Stenberg | |
with ipv6-enabled c-ares | |||
2008-10-10 | attempt to fix or allow further detection of an elusive icc SIGSEGV | Yang Tse | |
2008-10-10 | move struct namebuf6 declaration out of Curl_ip2addr6() | Yang Tse | |
2008-09-29 | Removed unneeded includes of signal.h and setjmp.h | Dan Fandrich | |
2008-09-24 | ntoa() and inet_ntoa_r() no longer used | Yang Tse | |
2008-08-20 | Use 'Curl_inet_pton()' instead of 'inet_pton()'. | Yang Tse | |
2008-07-09 | - Andreas Schuldei improved Phil Blundell's patch for IPv6 using c-ares, and I | Daniel Stenberg | |
edited it slightly. Now you should be able to use IPv6 addresses fine even with libcurl built to use c-ares. | |||
2008-04-29 | improve easy interface resolving timeout handling in c-ares enabled builds | Yang Tse | |
2007-11-07 | if () => if() | Daniel Stenberg | |
while () => while() and some other minor re-indentings | |||
2007-10-20 | Fix compiler warning: conversion from "int" to "unsigned short" may lose ↵ | Yang Tse | |
significant bits | |||
2007-10-03 | Fix issue related with the use of ares_timeout() result. | Yang Tse | |
2007-09-27 | a name resolve that times out is still a failed name resolve | Daniel Stenberg | |
2007-06-11 | restore the correct timeout time that my previous commit broke | Daniel Stenberg | |
2007-06-11 | Properly wait for the c-ares resolve to complete, hopefully the cure for | Daniel Stenberg | |
bug #1733955 | |||
2007-05-31 | When transferring 500 downloads in parallel with a c-ares enabled build only | Daniel Stenberg | |
to find that it crashed miserably, and this was due to some select()isms left in the code. This was due to API restrictions in c-ares 1.3.x, but with the upcoming c-ares 1.4.0 this is no longer the case so now libcurl runs much better with c-ares and the multi interface with > 1024 file descriptors in use. | |||
2007-03-27 | New Internal wrapper function Curl_select() around select (2), it | Yang Tse | |
uses poll() when a fine poll() is available, so now libcurl can be built without select() support at all if a fine poll() is available. | |||
2007-02-26 | Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-files | Gisle Vanem | |
since they're already included through "setup.h". | |||
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-05 | - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS | Daniel Stenberg | |
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the timeouts with millisecond resolution instead. The only restriction to that is the alarm() (sometimes) used to abort name resolves as that uses full seconds. I fixed the FTP response timeout part of the patch. Internally we now count and keep the timeouts in milliseconds but it also means we multiply set timeouts with 1000. The effect of this is that no timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which equals 24.86 days. We probably couldn't before either since the code did *1000 on the timeout values on several places already. | |||
2006-10-17 | Jeff helped me pinpoint that we didn't properly set the expire timer during | Daniel Stenberg | |
c-ares name resolves, but now we do! | |||
2006-07-25 | Simplify 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-25 | Moved functions common to IPv4 and C-ares to hostip.c; | Gisle Vanem | |
Curl_freeaddrinfo() and Curl_ip2addr(). | |||
2006-07-24 | Use the proper Curl_freeaddrinfo() for CURLRES_ARES. | Gisle Vanem | |
2006-07-21 | Constify 'hostname' and 'service' to various resolver functions. | Gisle Vanem | |
2006-07-21 | Changes for combination ENABLE_IPV6 and USE_ARES. | Gisle Vanem | |
2006-07-11 | include <malloc.h> only if HAVE_MALLOC_H and NEED_MALLOC_H are both defined. | Yang Tse | |
2006-05-05 | get the Curl_sockerrno proto | Daniel Stenberg | |
2006-05-04 | Roland Blom filed bug report #1481217 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini and David Byron. libcurl previously wrongly used GetLastError() on windows to get error details after socket-related function calls, when it really should use WSAGetLastError() instead. When changing to this, the former function Curl_ourerrno() is now instead called Curl_sockerrno() as it is necessary to only use it to get errno from socket-related functions as otherwise it won't work as intended on Windows. | |||
2006-04-26 | Use the HAVE_MALLOC_H and HAVE_PROCESS_H defines | Gisle Vanem | |
(more logical). | |||
2006-04-10 | First curl_multi_socket() commit. Should primarily be considered as an internal | Daniel Stenberg | |
code rearrange to fit the future better. | |||
2005-04-19 | only define _REENTRANT if not already defined, and only in setup.h | Daniel Stenberg | |
2005-02-09 | FTP code turned into state machine. Not completely yet, but a good start. | Daniel Stenberg | |
The tag 'before_ftp_statemachine' was set just before this commit in case of future need. | |||
2005-02-08 | ares_gethostbyname wants a 'ares_host_callback' in the 4th argument | Daniel Stenberg | |