aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-02-05use the timeout options when waiting for the server to connect when usingDaniel Stenberg
PORT Provide better error messages to allow debugging if one if the ipv6-related name functions fail in the ftp_use_port() function. This might help us diagnose the problems on AIX. Also make sure getaddrinfo() uses NULL and not "0" for the service argument.
2004-02-05hide the pack_hostent proto if ipv6 is enabled, as figured out by Tor ArntsenDaniel Stenberg
2004-02-05Fix the socklen_t type too. Needed only when built with memory debuggingDaniel Stenberg
as then we include the memdebug.h header from the lib dir, and it then requires this type... (fails on IRIX 6.5 without this)
2004-02-04fixed "comparison between signed and unsigned" complaintsDaniel Stenberg
2004-02-04don't use 'sin' as variable name as the picky compiler warnings complainDaniel Stenberg
about it shadowing the function sin()
2004-02-04fixingDaniel Stenberg
2004-02-04prevent a compiler warning about a macro definitionDaniel Stenberg
2004-02-04prevent the windows version to use global symbol namesDaniel Stenberg
added prototypes for the strcasecmp() functions
2004-02-04we use the more aggressive compiler warningsDaniel Stenberg
2004-02-04made more pointers unsigned, as they were mostly used passed in to functionsDaniel Stenberg
that assume them to be unsigned. Stops compiler warnings.
2004-02-04typecast comparision between signed and unsignedDaniel Stenberg
2004-02-04try_config() takes a second parameter as const, to prevent picky compilerDaniel Stenberg
warnings
2004-02-04takes a void *, not a char * anymoreDaniel Stenberg
2004-02-04ares_free_string() now takes a void * insteadDaniel Stenberg
2004-02-04don't compare signed and unsignedDaniel Stenberg
2004-02-04added a tags targetDaniel Stenberg
2004-02-04new configure fileDaniel Stenberg
2004-02-04use configure.ac instead of configure.inDaniel Stenberg
support --enable-debug to switch on picky compiler options
2004-02-04stop a compiler warningDaniel Stenberg
2004-02-03no one uses libcurl before 7.7 anyway...Daniel Stenberg
2004-02-03libcares.a is hereDaniel Stenberg
2004-02-03link with libcares instead of libaresDaniel Stenberg
2004-02-03We now produce 'libcares.a' instead, to make it possible to have both c-aresDaniel Stenberg
and the original ares installed in the same lib dir.
2004-02-03the configure and memdebug fixes of ydayDaniel Stenberg
2004-02-03the unused quit-function didn't pass a correct variable type to theDaniel Stenberg
response reading function
2004-02-03add link to the new cares web siteDaniel Stenberg
2004-02-03added notes about incompatible functionsDaniel Stenberg
2004-02-03adjusted to the new single-parameter version of this functionDaniel Stenberg
2004-02-03removed odd newlineDaniel Stenberg
2004-02-03added the missing ares numerical version initialiserDaniel Stenberg
2004-02-03modified *strerror()Daniel Stenberg
2004-02-02Use the nroff option figured out by the configure script. An attempt toDaniel Stenberg
make this better on more systems.
2004-02-02try to figure out if -man or -mandoc works to get text with the NROFFDaniel Stenberg
utility
2004-02-02undef accept before defining it, since AIX 5.2 has it as a define!Daniel Stenberg
2004-02-02more test91 tweaks and some c-ares stuffDaniel Stenberg
2004-02-02now provides c-ares version info in both version callsDaniel Stenberg
2004-02-02Introducing the SECOND version of the version_info struct. This shouldDaniel Stenberg
be backwards compatible with older libcurls just fine.
2004-02-02use the new single-argument ares_strerror()Daniel Stenberg
2004-02-02adjusted to the modified ares_strerror() functionDaniel Stenberg
NOTE that this breaks ares-compatibility, we have now officially taken the turn into the c-ares path. We will now officially depend on c-ares for asynch name resolves.
2004-02-02remove rcsid stuff from c files, it serves no useful purposeDaniel Stenberg
2004-02-02removed the silly second argument to ares_strerror()Daniel Stenberg
This breaks the API and ABI with the existing ares library. We hereby require the upcoming c-ares 1.0 for asynch name resolves!
2004-02-02Dirk Manske fixed the ares usage even more. We could get a timeout from aresDaniel Stenberg
as well, and when failing and not getting a timeout we now include the error message ares can provide us with.
2004-02-02mention mpe/ixDaniel Stenberg
2004-02-02set the 'retry' bit to TRUE when the connection is about to be retried,Daniel Stenberg
this allows the HTTP code to *not* return a failure just because no data has been received from the server
2004-02-02clear the sockerror if no error was returnedDaniel Stenberg
2004-02-02ares resolve timeout and ca bundle include fixesDaniel Stenberg
2004-02-02we include errno.h to truly know if we have ECONNRESET or notDaniel Stenberg
2004-02-02Timeout slow ares name lookups. This is based on the patch brought byDaniel Stenberg
Dirk Manske, but modified by me.
2004-02-02when including ca-bundle.h, don't look in the current dir first, simply useDaniel Stenberg
the search path since we want the build-version rather than the one in the source dir
2004-02-02fixed the win32 function to use the correct proto, as pointed out by GisleDaniel Stenberg
Vanem