diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-11-30 00:31:23 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-12-01 16:18:52 +0100 |
commit | 74595b223d36ce211d40c3e7acfc925a3b295097 (patch) | |
tree | 5c18cc8186f6579a8248ed8e8cf7c2d5fb2ea611 /docs/KNOWN_BUGS | |
parent | 3b77aa6b28cea8e0adb0a350ce80f553acd7bcb5 (diff) | |
download | curl-74595b223d36ce211d40c3e7acfc925a3b295097.tar.gz |
http_proxy: simplify CONNECT response reading
Since it now reads responses one byte a time, a loop could be removed
and it is no longer limited to get the whole response within 16K, it is
now instead only limited to 16K maximum header line lengths.
Diffstat (limited to 'docs/KNOWN_BUGS')
-rw-r--r-- | docs/KNOWN_BUGS | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index 84339ba90..ff585c504 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -18,7 +18,6 @@ problems may have been fixed or changed somewhat since this was written! 1.4 multipart formposts file name encoding 1.5 Expect-100 meets 417 1.6 Unnecessary close when 401 received waiting for 100 - 1.7 CONNECT response larger than 16KB 1.8 DNS timing is wrong for HTTP redirects 1.9 HTTP/2 frames while in the connection pool kill reuse 1.10 Strips trailing dot from host name @@ -144,13 +143,6 @@ problems may have been fixed or changed somewhat since this was written! waiting for the the 100-continue response. https://curl.haxx.se/mail/lib-2008-08/0462.html -1.7 CONNECT response larger than 16KB - - 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. - 1.8 DNS timing is wrong for HTTP redirects When extracting timing information after HTTP redirects, only the last |