⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 curl_easy_getinfo.3

📁 THIS IS HTTP CURL Example
💻 3
字号:
.\" **************************************************************************.\" *                                  _   _ ____  _.\" *  Project                     ___| | | |  _ \| |.\" *                             / __| | | | |_) | |.\" *                            | (__| |_| |  _ <| |___.\" *                             \___|\___/|_| \_\_____|.\" *.\" * Copyright (C) 1998 - 2007, 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.\" * are also available at http://curl.haxx.se/docs/copyright.html..\" *.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell.\" * copies of the Software, and permit persons to whom the Software is.\" * furnished to do so, under the terms of the COPYING file..\" *.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY.\" * KIND, either express or implied..\" *.\" * $Id: curl_easy_getinfo.3,v 1.32 2007-08-01 21:20:01 bagder Exp $.\" **************************************************************************.\".TH curl_easy_getinfo 3 "21 Mar 2006" "libcurl 7.15.4" "libcurl Manual".SH NAMEcurl_easy_getinfo - extract information from a curl handle.SH SYNOPSIS.B #include <curl/curl.h>.B "CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ... );".SH DESCRIPTIONRequest internal information from the curl session with this function.  Thethird argument \fBMUST\fP be a pointer to a long, a pointer to a char *, apointer to a struct curl_slist * or a pointer to a double (as thisdocumentation describes further down).  The data pointed-to will be filled inaccordingly and can be relied upon only if the function returns CURLE_OK.  Usethis function AFTER a performed transfer if you want to get transfer- orienteddata.You should not free the memory returned by this function unless it isexplicitly mentioned below..SH AVAILABLE INFORMATIONThe following information can be extracted:.IP CURLINFO_EFFECTIVE_URLPass a pointer to a 'char *' to receive the last used effective URL..IP CURLINFO_RESPONSE_CODEPass a pointer to a long to receive the last received HTTP or FTP code. Thisoption was known as CURLINFO_HTTP_CODE in libcurl 7.10.7 and earlier. Thiswill be zero if no server response code has been received. Note that a proxy'sCONNECT response should be read with \fICURLINFO_HTTP_CONNECTCODE\fP and notthis..IP CURLINFO_HTTP_CONNECTCODEPass a pointer to a long to receive the last received proxy response code to aCONNECT request..IP CURLINFO_FILETIMEPass a pointer to a long to receive the remote time of the retrieved document(in number of seconds since 1 jan 1970 in the GMT/UTC time zone). If you get-1, it can be because of many reasons (unknown, the server hides it or theserver doesn't support the command that tells document time etc) and the timeof the document is unknown. Note that you must tell the server to collect thisinformation before the transfer is made, by using the CURLOPT_FILETIME optionto \fIcurl_easy_setopt(3)\fP or you will unconditionally get a -1 back. (Addedin 7.5).IP CURLINFO_TOTAL_TIMEPass a pointer to a double to receive the total time in seconds for theprevious transfer, including name resolving, TCP connect etc..IP CURLINFO_NAMELOOKUP_TIMEPass a pointer to a double to receive the time, in seconds, it took from thestart until the name resolving was completed..IP CURLINFO_CONNECT_TIMEPass a pointer to a double to receive the time, in seconds, it took from thestart until the connect to the remote host (or proxy) was completed..IP CURLINFO_PRETRANSFER_TIMEPass a pointer to a double to receive the time, in seconds, it took from thestart until the file transfer is just about to begin. This includes allpre-transfer commands and negotiations that are specific to the particularprotocol(s) involved..IP CURLINFO_STARTTRANSFER_TIMEPass a pointer to a double to receive the time, in seconds, it took from thestart until the first byte is just about to be transferred. This includesCURLINFO_PRETRANSFER_TIME and also the time the server needs to calculatethe result..IP CURLINFO_REDIRECT_TIMEPass a pointer to a double to receive the total time, in seconds, it took forall redirection steps include name lookup, connect, pretransfer and transferbefore final transaction was started. CURLINFO_REDIRECT_TIME contains thecomplete execution time for multiple redirections.  (Added in 7.9.7).IP CURLINFO_REDIRECT_COUNTPass a pointer to a long to receive the total number of redirections that wereactually followed.  (Added in 7.9.7).IP CURLINFO_SIZE_UPLOADPass a pointer to a double to receive the total amount of bytes that wereuploaded..IP CURLINFO_SIZE_DOWNLOADPass a pointer to a double to receive the total amount of bytes that weredownloaded. The amount is only for the latest transfer and will be reset againfor each new transfer..IP CURLINFO_SPEED_DOWNLOADPass a pointer to a double to receive the average download speed that curlmeasured for the complete download. Measured in bytes/second..IP CURLINFO_SPEED_UPLOADPass a pointer to a double to receive the average upload speed that curlmeasured for the complete upload. Measured in bytes/second..IP CURLINFO_HEADER_SIZEPass a pointer to a long to receive the total size of all the headersreceived. Measured in number of bytes..IP CURLINFO_REQUEST_SIZEPass a pointer to a long to receive the total size of the issuedrequests. This is so far only for HTTP requests. Note that this may be morethan one request if FOLLOWLOCATION is true..IP CURLINFO_SSL_VERIFYRESULTPass a pointer to a long to receive the result of the certificationverification that was requested (using the CURLOPT_SSL_VERIFYPEER option to\fIcurl_easy_setopt(3)\fP)..IP CURLINFO_SSL_ENGINESPass the address of a 'struct curl_slist *' to receive a linked-list ofOpenSSL crypto-engines supported. Note that engines are normally implementedin separate dynamic libraries. Hence not all the returned engines may beavailable at run-time. \fBNOTE:\fP you must call \fIcurl_slist_free_all(3)\fPon the list pointer once you're done with it, as libcurl will not free thedata for you. (Added in 7.12.3).IP CURLINFO_CONTENT_LENGTH_DOWNLOADPass a pointer to a double to receive the content-length of the download. Thisis the value read from the Content-Length: field..IP CURLINFO_CONTENT_LENGTH_UPLOADPass a pointer to a double to receive the specified size of the upload..IP CURLINFO_CONTENT_TYPEPass a pointer to a 'char *' to receive the content-type of the downloadedobject. This is the value read from the Content-Type: field. If you get NULL,it means that the server didn't send a valid Content-Type header or that theprotocol used doesn't support this..IP CURLINFO_PRIVATEPass a pointer to a 'char *' to receive the pointer to the private dataassociated with the curl handle (set with the CURLOPT_PRIVATE option to\fIcurl_easy_setopt(3)\fP). Please note that for internal reasons, thevalue is returned as a 'char *', although effectively being a 'void *'.(Added in 7.10.3).IP CURLINFO_HTTPAUTH_AVAILPass a pointer to a long to receive a bitmask indicating the authenticationmethod(s) available. The meaning of the bits is explained in theCURLOPT_HTTPAUTH option for \fIcurl_easy_setopt(3)\fP.  (Added in 7.10.8).IP CURLINFO_PROXYAUTH_AVAILPass a pointer to a long to receive a bitmask indicating the authenticationmethod(s) available for your proxy authentication.  (Added in 7.10.8).IP CURLINFO_OS_ERRNOPass a pointer to a long to receive the errno variable from a connect failure.(Added in 7.12.2).IP CURLINFO_NUM_CONNECTSPass a pointer to a long to receive how many new connections libcurl had tocreate to achieve the previous transfer (only the successful connects arecounted).  Combined with \fICURLINFO_REDIRECT_COUNT\fP you are able to knowhow many times libcurl successfully reused existing connection(s) or not.  Seethe Connection Options of \fIcurl_easy_setopt(3)\fP to see how libcurl triesto make persistent connections to save time.  (Added in 7.12.3).IP CURLINFO_COOKIELISTPass a pointer to a 'struct curl_slist *' to receive a linked-list of allcookies cURL knows (expired ones, too). Don't forget to\fIcurl_slist_free_all(3)\fP the list after it has been used.  If there are nocookies (cookies for the handle have not been enabled or simply none have beenreceived) 'struct curl_slist *' will be set to point to NULL. (Added in7.14.1).IP CURLINFO_LASTSOCKETPass a pointer to a long to receive the last socket used by this curlsession. If the socket is no longer valid, -1 is returned. When you finishworking with the socket, you must call curl_easy_cleanup() as usual and letlibcurl close the socket and cleanup other resources associated with thehandle. This is typically used in combination with \fICURLOPT_CONNECT_ONLY\fP.(Added in 7.15.2).IP CURLINFO_FTP_ENTRY_PATHPass a pointer to a 'char *' to receive a pointer to a string holding the pathof the entry path. That is the initial path libcurl ended up in when loggingon to the remote FTP server. This stores a NULL as pointer if something iswrong. (Added in 7.15.4).SH TIMES.NFAn overview of the six time values available from curl_easy_getinfo()curl_easy_perform()    |    |--NT    |--|--CT    |--|--|--PT    |--|--|--|--ST    |--|--|--|--|--TT    |--|--|--|--|--RT.FI.IP NT\fICURLINFO_NAMELOOKUP_TIME\fP. The time it took from the start until the nameresolving was completed..IP CT\fICURLINFO_CONNECT_TIME\fP. The time it took from the start until the connectto the remote host (or proxy) was completed..IP PT\fICURLINFO_PRETRANSFER_TIME\fP. The time it took from the start until thefile transfer is just about to begin. This includes all pre-transfer commandsand negotiations that are specific to the particular protocol(s) involved..IP ST\fICURLINFO_STARTTRANSFER_TIME\fP. The time it took from the start until thefirst byte is just about to be transferred..IP TT\fICURLINFO_TOTAL_TIME\fP. Total time of the previous request..IP RT\fICURLINFO_REDIRECT_TIME\fP. The time it took for all redirection stepsinclude name lookup, connect, pretransfer and transfer before finaltransaction was started. So, this is zero if no redirection took place..SH RETURN VALUEIf the operation was successful, CURLE_OK is returned. Otherwise anappropriate error code will be returned..SH "SEE ALSO".BR curl_easy_setopt "(3)"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -