diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-12-19 09:09:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-12-19 09:09:44 +0000 |
commit | 1a85fb2bd0028ec2124274f619caf6547467b8c6 (patch) | |
tree | 339d7c15b764c6b7f767e8f3df3eb3cc3467b7a2 /docs/KNOWN_BUGS | |
parent | 8d11767048349f60361760e57e27e11644759b3b (diff) | |
download | curl-1a85fb2bd0028ec2124274f619caf6547467b8c6.tar.gz |
37. Having more than one connection to the same host when doing NTLM
authentication (with performs multiple "passes" and authenticates a
connection rather than a HTTP request), and particularly when using the
multi interface, there's a risk that libcurl will re-use a wrong connection
when doing the different passes in the NTLM negotiation and thus fail to
negotiate (in seemingly mysterious ways).
36. --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and
CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but
that's when they were introduced as previous to that the limiting logic was
made in the application only and not in the library). This problem is easily
repeated and it takes a Windows person to fire up his/hers debugger in order
to fix. http://curl.haxx.se/bug/view.cgi?id=1603712
Diffstat (limited to 'docs/KNOWN_BUGS')
-rw-r--r-- | docs/KNOWN_BUGS | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index e7231b8f6..3c25d9f79 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -3,6 +3,20 @@ 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! +37. Having more than one connection to the same host when doing NTLM + authentication (with performs multiple "passes" and authenticates a + connection rather than a HTTP request), and particularly when using the + multi interface, there's a risk that libcurl will re-use a wrong connection + when doing the different passes in the NTLM negotiation and thus fail to + negotiate (in seemingly mysterious ways). + +36. --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and + CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but + that's when they were introduced as previous to that the limiting logic was + made in the application only and not in the library). This problem is easily + repeated and it takes a Windows person to fire up his/hers debugger in order + to fix. http://curl.haxx.se/bug/view.cgi?id=1603712 + 35. Both SOCKS5 and SOCKS4 proxy connections are done blocking, which is very bad when used with the multi interface. |