mirror of
https://github.com/curl/curl.git
synced 2026-08-04 22:26:13 +03:00
getinfo: CURLINFO_QUEUE_TIME_T
Returns the time, in microseconds, during which this transfer was held in a waiting queue before it started "for real". A transfer might be put in a queue if after getting started, it cannot create a new connection etc due to set conditions and limits imposed by the application. Ref: #12293 Closes #12368
This commit is contained in:
parent
2b221d4214
commit
68f96fc9bf
10 changed files with 109 additions and 11 deletions
|
|
@ -2936,7 +2936,8 @@ typedef enum {
|
|||
CURLINFO_CAPATH = CURLINFO_STRING + 62,
|
||||
CURLINFO_XFER_ID = CURLINFO_OFF_T + 63,
|
||||
CURLINFO_CONN_ID = CURLINFO_OFF_T + 64,
|
||||
CURLINFO_LASTONE = 64
|
||||
CURLINFO_QUEUE_TIME_T = CURLINFO_OFF_T + 65,
|
||||
CURLINFO_LASTONE = 65
|
||||
} CURLINFO;
|
||||
|
||||
/* CURLINFO_RESPONSE_CODE is the new name for the option previously known as
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue