fix: timeout after last data chunk was handled
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.
This commit is contained in:

committed by
Daniel Stenberg

parent
c245a8f92e
commit
05632d5db9
11
CHANGES
11
CHANGES
@@ -7,6 +7,17 @@
|
|||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
Daniel Stenberg (24 Mar 2010)
|
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
|
- 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
|
to us by Massimo Callegari. There's a new test case 572 that verifies this
|
||||||
now.
|
now.
|
||||||
|
@@ -40,6 +40,7 @@ This release includes the following bugfixes:
|
|||||||
o chunked-encoding with Content-Length: header problem
|
o chunked-encoding with Content-Length: header problem
|
||||||
o multi interface HTTP POST over a proxy using PROXYTUNNEL
|
o multi interface HTTP POST over a proxy using PROXYTUNNEL
|
||||||
o RTSP GET_PARAMETER
|
o RTSP GET_PARAMETER
|
||||||
|
o timeout after last data chunk was handled
|
||||||
|
|
||||||
This release includes the following known bugs:
|
This release includes the following known bugs:
|
||||||
|
|
||||||
@@ -52,6 +53,7 @@ advice from friends like these:
|
|||||||
Daniel Fandrich, Patrick Monnerat, Pat Ray, Wesley Miaw, Ben Greear,
|
Daniel Fandrich, Patrick Monnerat, Pat Ray, Wesley Miaw, Ben Greear,
|
||||||
Ryan Chan, Markus Duft, Andrei Benea, Jacob Moshenko, Daniel Johnson,
|
Ryan Chan, Markus Duft, Andrei Benea, Jacob Moshenko, Daniel Johnson,
|
||||||
Constantine Sapuntzakis, Douglas Steinwand, Thomas Lopatic, Hauke Duden,
|
Constantine Sapuntzakis, Douglas Steinwand, Thomas Lopatic, Hauke Duden,
|
||||||
Akos Pasztory, Kenny To, Christopher Conroy, Massimo Callegari
|
Akos Pasztory, Kenny To, Christopher Conroy, Massimo Callegari,
|
||||||
|
Bob Richmond
|
||||||
|
|
||||||
Thanks! (and sorry if I forgot to mention someone)
|
Thanks! (and sorry if I forgot to mention someone)
|
||||||
|
@@ -1060,21 +1060,22 @@ CURLcode Curl_readwrite(struct connectdata *conn,
|
|||||||
if(result)
|
if(result)
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
if(data->set.timeout &&
|
if(k->keepon) {
|
||||||
(Curl_tvdiff(k->now, k->start) >= data->set.timeout)) {
|
if(data->set.timeout &&
|
||||||
if(k->size != -1) {
|
(Curl_tvdiff(k->now, k->start) >= data->set.timeout)) {
|
||||||
failf(data, "Operation timed out after %ld milliseconds with %"
|
if(k->size != -1) {
|
||||||
FORMAT_OFF_T " out of %" FORMAT_OFF_T " bytes received",
|
failf(data, "Operation timed out after %ld milliseconds with %"
|
||||||
Curl_tvdiff(k->now, k->start), k->bytecount, k->size);
|
FORMAT_OFF_T " out of %" FORMAT_OFF_T " bytes received",
|
||||||
} else {
|
Curl_tvdiff(k->now, k->start), k->bytecount, k->size);
|
||||||
failf(data, "Operation timed out after %ld milliseconds with %"
|
} else {
|
||||||
FORMAT_OFF_T " bytes received",
|
failf(data, "Operation timed out after %ld milliseconds with %"
|
||||||
Curl_tvdiff(k->now, k->start), k->bytecount);
|
FORMAT_OFF_T " bytes received",
|
||||||
|
Curl_tvdiff(k->now, k->start), k->bytecount);
|
||||||
|
}
|
||||||
|
return CURLE_OPERATION_TIMEDOUT;
|
||||||
}
|
}
|
||||||
return CURLE_OPERATION_TIMEDOUT;
|
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
if(!k->keepon) {
|
|
||||||
/*
|
/*
|
||||||
* The transfer has been performed. Just make some general checks before
|
* The transfer has been performed. Just make some general checks before
|
||||||
* returning.
|
* returning.
|
||||||
|
Reference in New Issue
Block a user