diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-07-03 06:56:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-07-03 06:56:03 +0000 |
commit | 7c648782bc7c97be81c619acd8598c38b59c5832 (patch) | |
tree | 19083e2f56b425701f0e44abcfe69e60e608aa40 /docs/curl.1 | |
parent | ee64d14733266ce533eeb3cbc86bd80212527b81 (diff) | |
download | curl-7c648782bc7c97be81c619acd8598c38b59c5832.tar.gz |
Introcuding a new timestamp for curl_easy_getinfo():
CURLINFO_APPCONNECT_TIME. This is set with the "application layer"
handshake/connection is completed (typically SSL, TLS or SSH). By using this
you can figure out the application layer's own connect time. You can extract
the time stamp using curl's -w option and the new variable named
'time_appconnect'. This feature was sponsored by Lenny Rachitsky at NeuStar.
Diffstat (limited to 'docs/curl.1')
-rw-r--r-- | docs/curl.1 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/curl.1 b/docs/curl.1 index 15a338666..129939cd0 100644 --- a/docs/curl.1 +++ b/docs/curl.1 @@ -1241,8 +1241,12 @@ The time, in seconds, it took from the start until the name resolving was completed. .TP .B time_connect -The time, in seconds, it took from the start until the connect to the remote -host (or proxy) was completed. +The time, in seconds, it took from the start until the TCP connect to the +remote host (or proxy) was completed. +.TP +.B time_appconnect +The time, in seconds, it took from the start until the SSL/SSH/etc +connect/handshake to the remote host was completed. (Added in 7.19.0) .TP .B time_pretransfer The time, in seconds, it took from the start until the file transfer is just |