diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-07-16 21:08:08 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-07-16 21:08:08 +0000 |
commit | b85b56a73d46a4842daae280a85eb60c7e675796 (patch) | |
tree | 98b275a938e59d8cd88a7dc37aaeef813b159e4e /docs | |
parent | 1da3d402f619adcb3880ab05a311a609f9e28d60 (diff) |
45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names.
getaddrinfo() sorts the response list which effectively kills how libcurl
deals with round-robin DNS entries. All details:
http://curl.haxx.se/mail/lib-2007-07/0168.html
initial suggested function to use for randomizing the response:
http://curl.haxx.se/mail/lib-2007-07/0178.html
Diffstat (limited to 'docs')
-rw-r--r-- | docs/KNOWN_BUGS | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index 428d3ccb4..2d3f622c4 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -3,6 +3,13 @@ join in and help us correct one or more of these! Also be sure to check the changelog of the current development status, as one or more of these problems may have been fixed since this was written! +45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names. + getaddrinfo() sorts the response list which effectively kills how libcurl + deals with round-robin DNS entries. All details: + http://curl.haxx.se/mail/lib-2007-07/0168.html + initial suggested function to use for randomizing the response: + http://curl.haxx.se/mail/lib-2007-07/0178.html + 44. --ftp-method nocwd does not handle URLs ending with a slash properly (it should list the contents of that directory). See test case 351. |