- Nov 10, 2009
-
-
Yang Tse authored
-
- Nov 02, 2009
-
-
Yang Tse authored
-
- Oct 31, 2009
-
-
Yang Tse authored
-
- Oct 29, 2009
-
-
Daniel Stenberg authored
-
- Oct 23, 2009
-
-
Yang Tse authored
ARES_ECANCELLED error code value and missing error code description.
-
- Oct 07, 2009
-
-
Yang Tse authored
- Fixing out of bounds memory overwrite triggered with malformed /etc/hosts file. - Improving parsing of /etc/hosts file. - Validating requested address family. - Ensuring that failures always return a NULL pointer. - Adjusting header inclusions.
-
- Sep 04, 2009
-
-
Daniel Stenberg authored
-
- Aug 03, 2009
-
-
Daniel Stenberg authored
ares_cancel() is used, to be ARES_ECANCELLED instead of ARES_ETIMEOUT to better allow the callback to know what's happening.
-
Daniel Stenberg authored
fails to get inited by other means. This fixes a case of when the c-ares init fails when internet access is fone.
-
- Jul 14, 2009
-
-
Guenter Knauf authored
renamed generated config.h to ares_config.h in order to avoid clashes when libcurl is used with other projects which also have a config.h.
-
- Jun 12, 2009
-
-
Yang Tse authored
Try to make more clear that --enable-curldebug has nothing to do with --enable-debug for this library.
-
- Jun 08, 2009
-
-
Yang Tse authored
-
- May 26, 2009
-
-
Yang Tse authored
-
- May 20, 2009
-
-
Yang Tse authored
-
- May 11, 2009
-
-
Daniel Stenberg authored
only expose functions starting with ares_.
-
- May 02, 2009
-
-
Yang Tse authored
-
- Apr 21, 2009
-
-
Yang Tse authored
setup_once.h. Inclusion of each header file is based on the definition of NEED_MALLOC_H and NEED_MEMORY_H respectively.
-
- Mar 11, 2009
-
-
Yang Tse authored
-
- Feb 20, 2009
-
-
Yang Tse authored
-
- Feb 03, 2009
-
-
Phil Blundell authored
- If the server returns garbage or nothing at all in response to an AAAA query, go on and ask for A records anyway.
-
- Jan 31, 2009
-
-
Daniel Stenberg authored
either AF_INET6 or AF_INET. It works by accepting any of the looksups in the hosts file, and it resolves the AAAA field with a fallback to A.
-
- Jan 14, 2009
-
-
Daniel Stenberg authored
now declares the private struct ares_in6_addr for all systems instead of relying on one possibly not present in the system.
-
- Jan 13, 2009
-
-
Phil Blundell authored
packet storms when several queries were started at the same time.
-
- Jan 11, 2009
-
-
Daniel Stenberg authored
that is now used by the ares_parse_*_reply() functions instead of the ares_expand_name() simply to easier return ARES_EBADRESP for the cases where the name expansion fails as in responses that really isn't expected.
-
- Dec 09, 2008
-
-
Gisle Vanem authored
-
- Dec 04, 2008
-
-
Daniel Stenberg authored
and I edited it to also get duped by ares_dup().
-
- Dec 03, 2008
-
-
Daniel Stenberg authored
Also discussed on the ml.
-
- Nov 26, 2008
- Nov 25, 2008
-
-
Yang Tse authored
ares_addr union is now changed into an internal struct which also holds the address family.
-
- Nov 19, 2008
-
-
Daniel Stenberg authored
resolves a host name from the given file, using the regular hosts syntax.
-
- Nov 01, 2008
-
-
Daniel Stenberg authored
in man resolv.conf: causes round robin selection of nameservers from among those listed. This has the effect of spreading the query load among all listed servers, rather than having all clients try the first listed server first every time. You can enable it with ARES_OPT_ROTATE
-
- Oct 21, 2008
-
-
Yang Tse authored
- handles the EINPROGRESS for UDP connects - uses closesocket instead of close on some paths that were noticed
-
- Oct 17, 2008
-
-
Daniel Stenberg authored
-s option as well.
-
- Oct 07, 2008
-
-
Yang Tse authored
-
- Sep 17, 2008
-
-
Yang Tse authored
-
- Aug 29, 2008
-
-
Daniel Stenberg authored
-
- Aug 25, 2008
- Aug 04, 2008
-
-
Daniel Stenberg authored
The symptom: * Users (usually, but not always) on 2-Wire routers and the Comcast service and a wired connection to their router would find that the second and subsequent DNS lookups from fresh processes using c-ares to resolve the same address would cause the process to never see a reply (it keeps polling for around 1m15s before giving up). The repro: * On such a machine (and yeah, it took us a lot of QA to find the systems that reproduce such a specific problem!), do 'ahost www.secondlife.com', then do it again. The first process's lookup will work, subsequent lookups will time-out and fail. The cause: * init_id_key() was calling randomize_key() *before* it initialized key->state, meaning that the randomness generated by randomize_key() is immediately overwritten with deterministic values. (/dev/urandom was also being read incorrectly in the c-ares version we were using, but this was fixed in a later version.) * This makes the stream of generated query-IDs from any new c-ares process be an identical and predictable sequence of IDs. * This makes the 2-Wire's default built-in DNS server detect these queries as probable-duplicates and (erroneously) not respond at all.
-