]> granicus.if.org Git - curl/commitdiff
multi_runsingle: set timeout error messages
authorDirk Manske <dm@nonitor.de>
Mon, 20 Sep 2010 11:58:51 +0000 (13:58 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 27 Sep 2010 19:12:49 +0000 (21:12 +0200)
With the latest changes to fix the timeout handling with multi interface
we lost the timeout error messages. This patch brings them back.

lib/multi.c

index 13915c1209b8c52fb37b31eac42b8f7ad3f3c88f..e857392e0657561d27687bcba711c39a07ae5c6f 100644 (file)
@@ -985,6 +985,19 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
 
       if(timeout_ms < 0) {
         /* Handle timed out */
+        if(easy->state == CURLM_STATE_WAITRESOLVE)
+          failf(data, "Resolving timed out after %ld milliseconds",
+                Curl_tvdiff(now, data->progress.t_startsingle));
+        else if(easy->state == CURLM_STATE_WAITCONNECT)
+          failf(data, "Connection timed out after %ld milliseconds",
+                Curl_tvdiff(now, data->progress.t_startsingle));
+        else {
+          k = &data->req;
+          failf(data, "Operation timed out after %ld milliseconds with %"
+                FORMAT_OFF_T " out of %" FORMAT_OFF_T " bytes received",
+                Curl_tvdiff(now, data->progress.t_startsingle), k->bytecount,
+                k->size);
+        }
         easy->result = CURLE_OPERATION_TIMEDOUT;
         multistate(easy, CURLM_STATE_COMPLETED);
         break;