aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-11-07 08:45:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-11-07 08:45:10 +0000
commitef749fa9ce93830f9835c9951a223dea4f5782ff (patch)
tree4b6714b3a39dedc7d8d2bbe1222a62449ab4c906 /lib
parenta23c92596e2fa9c6af389c210033d7a8a73a3541 (diff)
Bug report #634625 identified how curl returned timeout immediately when
CURLOPT_CONNECTTIMEOUT was used and provided a fix.
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/url.c b/lib/url.c
index 817bb6d56..92c4dd926 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -1764,6 +1764,10 @@ static CURLcode CreateConnection(struct SessionHandle *data,
/* Store creation time to help future close decision making */
conn->created = Curl_tvnow();
+ /* Set the start time temporary to this creation time to allow easier
+ timeout checks before the transfer has started for real. The start time
+ is later set "for real" using Curl_pgrsStartNow(). */
+ conn->data->progress.start = conn->created;
/***********************************************************
* We need to allocate memory to store the path in. We get the size of the