diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-10-07 08:28:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-10-07 08:28:03 +0000 |
commit | 08fd1829e0e01cd9cee3a7da60d315f11aa591c8 (patch) | |
tree | 8424013cea0bfa9fde4408615ba9256da4557d74 /docs/KNOWN_BUGS | |
parent | 43a46046396afa9fa00513eed1a2539d9e849476 (diff) |
Known bug #47, which confused libcurl if doing NTLM auth over a proxy with
a response that was larger than 16KB is now improved slightly so that now
the restriction at 16KB is for the headers only and it should be a rare
situation where the response-headers exceed 16KB. Thus, I consider #47 fixed
and the header limitation is now known as known bug #48.
Diffstat (limited to 'docs/KNOWN_BUGS')
-rw-r--r-- | docs/KNOWN_BUGS | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index 2b2fffb71..63839689a 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -3,9 +3,10 @@ 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! -47. If a CONNECT response is larger than BUFSIZE when the connection is meant - to be kept alive, the function will return prematurely and will confuse the - rest of the HTTP protocol code. +48. If a CONNECT response-headers are larger than BUFSIZE (16KB) when the + connection is meant to be kept alive (like for NTLM proxy auth), the + function will return prematurely and will confuse the rest of the HTTP + protocol code. This should be very rare. 45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names. getaddrinfo() sorts the response list which effectively kills how libcurl |