aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2010-03-24 14:19:50 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2010-03-24 14:19:50 -0400
commit481c61d06082195d7ce8ab6cc21ce274e54b2aa4 (patch)
tree266e634cfe741240b8cd3f06402a1cee074f1e1a /CHANGES
parentff438c994ebbbb63eda83ca34e2bbe8e3f6dfbf3 (diff)
parent05632d5db9b67264826c53d99eaa81943e36275c (diff)
Merge branch 'master' of github.com:bagder/curl
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index b6a5d4227..fa3f4000a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,17 @@
Changelog
Daniel Stenberg (24 Mar 2010)
+- Bob Richmond: There's an annoying situation where libcurl will read new HTTP
+ response data from a socket, then check if it's a timeout if one is set. If
+ the last packet received constitutes the end of the response body, libcurl
+ still treats it as a timeout condition and reports a message like:
+
+ "Operation timed out after 3000 milliseconds with 876 out of 876 bytes
+ received"
+
+ It should only a timeout if the timer lapsed and we DIDN'T receive the end
+ of the response body yet.
+
- Christopher Conroy fixed a problem with RTSP and GET_PARAMETER reported
to us by Massimo Callegari. There's a new test case 572 that verifies this
now.