diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-04-25 16:45:15 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-25 16:45:15 +0000 |
commit | f6525ae20087290e1ce91839461e671b9ec81cc0 (patch) | |
tree | 3f9c9d60472e23a83c9dd59031fcc19d3f2b0f32 /docs/libcurl/curl_easy_getinfo.3 | |
parent | 0be7944d66d5015dac8b6ad6126abd899613e22a (diff) |
the TOTAL_TIME is not really total, as it excludes the connect time...
Diffstat (limited to 'docs/libcurl/curl_easy_getinfo.3')
-rw-r--r-- | docs/libcurl/curl_easy_getinfo.3 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/libcurl/curl_easy_getinfo.3 b/docs/libcurl/curl_easy_getinfo.3 index e60f97f94..9f1e6a07e 100644 --- a/docs/libcurl/curl_easy_getinfo.3 +++ b/docs/libcurl/curl_easy_getinfo.3 @@ -2,7 +2,7 @@ .\" nroff -man [file] .\" $Id$ .\" -.TH curl_easy_init 3 "17 Apr 2002" "libcurl 7.9.7" "libcurl Manual" +.TH curl_easy_init 3 "25 Apr 2002" "libcurl 7.9.7" "libcurl Manual" .SH NAME curl_easy_getinfo - Extract information from a curl session (added in 7.4) .SH SYNOPSIS @@ -38,7 +38,9 @@ CURLOPT_FILETIME option to \fIcurl_easy_setopt(3)\fP. (Added in 7.5) .TP .B CURLINFO_TOTAL_TIME Pass a pointer to a double to receive the total transaction time in seconds -for the previous transfer. +for the previous transfer. This time does not include the connect time, so if +you want the complete operation time, you should add the +CURLINFO_CONNECT_TIME. .TP .B CURLINFO_NAMELOOKUP_TIME Pass a pointer to a double to receive the time, in seconds, it took from the |