aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/getinfo-times
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-03-23 14:44:29 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-03-24 15:05:59 +0100
commit9a8b3b3e131359aea1cac650fb6ac331fbe2047c (patch)
tree1446d8ae1e3126d4e7678da04542244c9fe17899 /docs/libcurl/getinfo-times
parent18c7084c7dd393f344cb4f4b9698264283d9353a (diff)
copyright: fix out-of-date copyright ranges and missing headers
Reported by the new script 'scripts/copyright.pl'. The script has a regex whitelist for the files that don't need copyright headers. Removed three (mostly usesless) README files from docs/ Closes #5141
Diffstat (limited to 'docs/libcurl/getinfo-times')
-rw-r--r--docs/libcurl/getinfo-times27
1 files changed, 0 insertions, 27 deletions
diff --git a/docs/libcurl/getinfo-times b/docs/libcurl/getinfo-times
deleted file mode 100644
index bb0fdcb1c..000000000
--- a/docs/libcurl/getinfo-times
+++ /dev/null
@@ -1,27 +0,0 @@
-An overview of the six time values available from curl_easy_getinfo()
-
-curl_easy_perform()
- |
- |--NT
- |--|--CT
- |--|--|--PT
- |--|--|--|--ST
- |--|--|--TT
- |--|--|--|--|--RT
-
-NT = CURLINFO_NAMELOOKUP_TIME. The time it took from the start until the name
- resolving was completed.
-CT = CURLINFO_CONNECT_TIME. The time it took from the start until the connect
- to the remote host (or proxy) was completed.
-PT = CURLINFO_PRETRANSFER_TIME. The time 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.
-ST = CURLINFO_STARTTRANSFER_TIME. The time it took from the start until the
- first byte is just about to be transferred.
-TT = CURLINFO_TOTAL_TIME. Time of the previous transfer. This time does not
- include the connect time (CT), so if you want the complete operation
- time, you should add that.
-RT = CURLINFO_REDIRECT_TIME. The time it took for all redirection steps
- include name lookup, connect, pretransfer and transfer before final
- transaction was started. So, this is zero if no redirection took place.