Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
e5b2f33b
Commit
e5b2f33b
authored
19 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Added the info from getinfo-times as it really belongs in this man page.
parent
934d312f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/libcurl/curl_easy_getinfo.3
+35
-1
35 additions, 1 deletion
docs/libcurl/curl_easy_getinfo.3
with
35 additions
and
1 deletion
docs/libcurl/curl_easy_getinfo.3
+
35
−
1
View file @
e5b2f33b
...
...
@@ -2,7 +2,7 @@
.\" nroff -man [file]
.\" $Id$
.\"
.TH curl_easy_getinfo 3 "
22 Dec
200
4
" "libcurl 7.12.3" "libcurl Manual"
.TH curl_easy_getinfo 3 "
6 Oct
200
5
" "libcurl 7.12.3" "libcurl Manual"
.SH NAME
curl_easy_getinfo - extract information from a curl handle
.SH SYNOPSIS
...
...
@@ -141,6 +141,40 @@ cookies cURL knows (expired ones, too). Don't forget to
cookies (cookies for the handle have not been enabled or simply none have been
received) 'struct curl_slist *' will be set to point to NULL. (Added in
7.14.1)
.SH TIMES
.NF
An overview of the six time values available from curl_easy_getinfo()
curk_easy_perform()
|
|--NT
|--|--CT
|--|--|--PT
|--|--|--|--ST
|--|--|--TT
|--|--|--|--|--RT
.IP NT
CURLINFO_NAMELOOKUP_TIME. The time it took from the start until the name
resolving was completed.
.IP CT
CURLINFO_CONNECT_TIME. The time it took from the start until the connect to
the remote host (or proxy) was completed.
.IP 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.
.IP ST
CURLINFO_STARTTRANSFER_TIME. The time it took from the start until the first
byte is just about to be transferred.
.IP 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.
.IP 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.
.SH RETURN VALUE
If the operation was successful, CURLE_OK is returned. Otherwise an
appropriate error code will be returned.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment