]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CURLINFO_PRETRANSFER_TIME.3: clarify
authorDaniel Stenberg <daniel@haxx.se>
Thu, 14 Jan 2021 13:22:25 +0000 (14:22 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 14 Jan 2021 22:15:07 +0000 (23:15 +0100)
... the timer *does* include the instructions for getting the remote
file.

Ref: #6452
Closes #6453

docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME.3

index 113b0331e0e4ed6fd5a037e439def6424ec87fde..68f68f88a87a154bc794cdb078a3c5fd597c6b98 100644 (file)
@@ -5,7 +5,7 @@
 .\" *                            | (__| |_| |  _ <| |___
 .\" *                             \___|\___/|_| \_\_____|
 .\" *
-.\" * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
+.\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
 .\" *
 .\" * This software is licensed as described in the file COPYING, which
 .\" * you should have received as part of this distribution. The terms
@@ -29,10 +29,11 @@ CURLINFO_PRETRANSFER_TIME \- get the time until the file transfer start
 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_PRETRANSFER_TIME, double *timep);
 .SH DESCRIPTION
 Pass a pointer to a double to receive 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. It does \fInot\fP involve the sending of the protocol-
-specific request that triggers a transfer.
+start until the file transfer is just about to begin.
+
+This time-stamp includes all pre-transfer commands and negotiations that are
+specific to the particular protocol(s) involved. It includes the sending of
+the protocol- specific protocol instructions that triggers a transfer.
 
 When a redirect is followed, the time from each request is added together.