Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-10 | store times in time_t | Daniel Stenberg | |
2004-03-09 | only build with the windows threading trace code if | Daniel Stenberg | |
DEBUG_THREADING_GETHOSTBYNAME is defined | |||
2004-03-03 | tv_sec is an int, so we explicitly typecast the result of long - long to | Daniel Stenberg | |
an int when we assign it. | |||
2004-02-23 | use size_t to keep strlen() results | Daniel Stenberg | |
2004-02-23 | simplied how create_hostcache_id() is used, and also its function somewhat | Daniel Stenberg | |
cleared up some ssize_t/size_t mixups | |||
2004-02-20 | Gisle Vanem brings name resolving timeout possibilities to windows people. | Daniel Stenberg | |
This works by magicly starting up a new thread that can be killed when the timeout is reached. testtesttest! | |||
2004-02-18 | No longer uses the 'ret' variable in the plain ipv4-version of | Daniel Stenberg | |
my_getaddrinfo() (caused a warning by the IRIX MIPSPro compiler). Also clarified the situation for the 3-arg version of gethostbyname_r() with a huge comment. | |||
2004-02-18 | Make sure dns cache timeout -1 really means forever, as it is documented to | Daniel Stenberg | |
be. Simply skip the pruning. | |||
2004-02-16 | Make the 'areschannel' get created in the curl_easy_init() and re-use that | Daniel Stenberg | |
same channel during the whole curl handle's life until curl_easy_cleanup(). | |||
2004-02-15 | Mark the dns entry 'inuse' properly even when used from the cache. This | Daniel Stenberg | |
seems to correct some host cache screw-ups I could reproduce. | |||
2004-02-12 | Make hostcache_fixoffset() take a long for offset, to fully work with 64bit | Daniel Stenberg | |
archs, also no longer typecast pointers to ints as that is a nono on 64bit systems. | |||
2004-02-05 | hide the pack_hostent proto if ipv6 is enabled, as figured out by Tor Arntsen | Daniel Stenberg | |
2004-02-02 | adjusted to the modified ares_strerror() function | Daniel 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-02 | Dirk Manske fixed the ares usage even more. We could get a timeout from ares | Daniel Stenberg | |
as well, and when failing and not getting a timeout we now include the error message ares can provide us with. | |||
2004-02-02 | Timeout slow ares name lookups. This is based on the patch brought by | Daniel Stenberg | |
Dirk Manske, but modified by me. | |||
2004-01-14 | fixed the Curl_resolv()'s return code when the looked up host was already | Daniel Stenberg | |
in the cache (Vincent Bronner) | |||
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2003-12-15 | added a library-wide interface for doing dns cache pruning, and no longer | Daniel Stenberg | |
make the pruning at each name lookup, only in Curl_done(). | |||
2003-12-15 | if Curl_hash_add() returns NULL, we shall not free the addrinfo field as that | Daniel Stenberg | |
is made in the hash function in the case of failure (using the already setup 'dtor' function). | |||
2003-12-03 | Steve Green fixed Curl_resolv() | Daniel Stenberg | |
2003-11-15 | do ares_destroy() on the ares handle when we're done in Curl_is_resolved() | Daniel Stenberg | |
2003-11-14 | Siddhartha Prakash Jain found a case with a bad resolve that we didn't | Daniel Stenberg | |
properly bail out from, when using ares. | |||
2003-10-28 | Another glibc resolve name fix | Daniel Stenberg | |
2003-10-24 | better bailing-out cleanup if a malloc fails in the DNS cache | Daniel Stenberg | |
2003-10-20 | lock the DNS cache properly before adding an entry when using asynch DNS | Daniel Stenberg | |
2003-10-14 | Gisle Vanem's IPv6-on-Windows patch applied! | Daniel Stenberg | |
2003-10-12 | Dirk Manske made the share-locking around DNS lookups a bit "looser" so that | Daniel Stenberg | |
multiple DNS lookups can run simultaneously faster. The downside is that resolving the same host name now can be made at once from multiple threads, but the upside is that threads now don't alwys have to wait for the others' resolves. Test case 506 updated accordingly. | |||
2003-10-05 | just re-indented some code | Daniel Stenberg | |
2003-10-04 | Based on a patch provided by Siddhartha Prakash Jain. In Curl_resolv() when | Daniel Stenberg | |
my_getaddrinfo() has been called (and wait has been set to TRUE), we check if the name already is resolved and if so don't return wait status to the parent. This can happen with IP-only names. | |||
2003-09-19 | Added CURLOPT_IPRESOLVE support | Daniel Stenberg | |
2003-09-14 | Jeff Pohlmeyer did some marvelous debugging to track this one down. We MUST | Daniel Stenberg | |
NOT free the existing hash entry when we try to add a new one that matches an existing entry. We now instead free the new one, and make the parent function use the old entry's struct instead. | |||
2003-09-11 | Curl_is_resolved(): FD_ZERO the file descriptors before we call ares_fds(). | Daniel Stenberg | |
Problem tracked down by Bjorn Reese. | |||
2003-09-01 | The error buffer was not getting filled when Curl_wait_for_resolv() fails. | Daniel Stenberg | |
Jeff Pohlmeyer fixed. | |||
2003-08-22 | use proper type to prevent compiler warning | Daniel Stenberg | |
2003-08-21 | Vincent Sanders provided a fix for name resolving when linked with uClibc. | Daniel Stenberg | |
2003-08-19 | make sure the 'done' variable is always set to something in the | Daniel Stenberg | |
Curl_is_resolved() function | |||
2003-08-19 | don't set done==TRUE if the host name doesn't resolve | Daniel Stenberg | |
2003-08-06 | make it build without ares support | Daniel Stenberg | |
make sure it set async false even when using ipv6 (made test case 20 fail before) | |||
2003-08-05 | ares awareness/usage/support added. If configure --enable-ares is used, we | Daniel Stenberg | |
build libcurl to use ares for asynch name resolves. | |||
2003-07-23 | minor code style fix | Daniel Stenberg | |
2003-06-26 | use CURLDEBUG instead of MALLOCDEBUG for preprocessor conditions | Daniel Stenberg | |
2003-05-20 | Gisle Vanem's code for not trusting h_aliases to always be non-NULL | Daniel Stenberg | |
2003-05-13 | Setup and use CURL_INADDR_NONE all over instead of INADDR_NONE. We setup | Daniel Stenberg | |
the define accordingly in the hostip.h header to work nicely all over. | |||
2003-04-03 | spell fix | Daniel Stenberg | |
2003-03-19 | typecast the conversion from const char * to char * | Daniel Stenberg | |
2003-03-03 | AIX 4.3 or later should use gethostbyname() and not the *_r() version. | Daniel Stenberg | |
2003-02-04 | added the sharing of DNS cache | Jean-Philippe Barette-LaPierre | |
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2002-12-16 | EAGAIN on older (correct) glibc versions indicate a problem and not the need | Daniel Stenberg | |
for a bigger buffer and this is indeed badness for us. Making this work on both old and new glibc versions require an ugly loop that in its worse form cause 45 bad loops when using the correct glibc and a non-resolving host name... :-/ We want a better fix. Badly. |