aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-11-20 15:00:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-11-20 15:00:50 +0000
commitca0fd33d2d3ecca13bc78893e165a34682b4dcd2 (patch)
treedabe130a246fdf0d04f5d3196b644729e6d2ef15 /docs
parent271f96f78f04f556ba953b10d31bfed2202ad439 (diff)
Georg Horn's STARTTRANSFER_TIME patch
Diffstat (limited to 'docs')
-rw-r--r--docs/curl.15
-rw-r--r--docs/curl_easy_getinfo.36
2 files changed, 11 insertions, 0 deletions
diff --git a/docs/curl.1 b/docs/curl.1
index 358ef2d6a..4ca8ee2c2 100644
--- a/docs/curl.1
+++ b/docs/curl.1
@@ -569,6 +569,11 @@ The time, in seconds, it took from the start until the file transfer is just
about to begin. This includes all pre-transfer commands and negotiations that
are specific to the particular protocol(s) involved.
.TP
+.B time_starttransfer
+The time, in seconds, it took from the start until the first byte is just about
+to be transfered. This includes time_pretransfer and also the time the
+server needs to calculate the result.
+.TP
.B size_download
The total amount of bytes that were downloaded.
.TP
diff --git a/docs/curl_easy_getinfo.3 b/docs/curl_easy_getinfo.3
index b6ce3c8c1..73fd461a3 100644
--- a/docs/curl_easy_getinfo.3
+++ b/docs/curl_easy_getinfo.3
@@ -52,6 +52,12 @@ start until the file transfer is just about to begin. This includes all
pre-transfer commands and negotiations that are specific to the particular
protocol(s) involved.
.TP
+.B CURLINFO_STARTTRANSFER_TIME
+Pass a pointer to a double to receive the time, in seconds, it took from the
+start until the first byte is just about to be transfered. This includes
+CURLINFO_PRETRANSFER_TIME and also the time the server needs to calculate
+the result.
+.TP
.B CURLINFO_SIZE_UPLOAD
Pass a pointer to a double to receive the total amount of bytes that were
uploaded.