curl_easy_getinfo.3 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at http://curl.haxx.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH curl_easy_getinfo 3 "11 Feb 2009" "libcurl 7.19.4" "libcurl Manual"
  24. .SH NAME
  25. curl_easy_getinfo - extract information from a curl handle
  26. .SH SYNOPSIS
  27. .B #include <curl/curl.h>
  28. .B "CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ... );"
  29. .SH DESCRIPTION
  30. Request internal information from the curl session with this function. The
  31. third argument \fBMUST\fP be a pointer to a long, a pointer to a char *, a
  32. pointer to a struct curl_slist * or a pointer to a double (as this
  33. documentation describes further down). The data pointed-to will be filled in
  34. accordingly and can be relied upon only if the function returns CURLE_OK. Use
  35. this function AFTER a performed transfer if you want to get transfer- oriented
  36. data.
  37. You should not free the memory returned by this function unless it is
  38. explicitly mentioned below.
  39. .SH AVAILABLE INFORMATION
  40. The following information can be extracted:
  41. .IP CURLINFO_EFFECTIVE_URL
  42. Pass a pointer to a char pointer to receive the last used effective URL.
  43. .IP CURLINFO_RESPONSE_CODE
  44. Pass a pointer to a long to receive the last received HTTP, FTP or SMTP
  45. response code. This option was previously known as CURLINFO_HTTP_CODE in
  46. libcurl 7.10.7 and earlier. The value will be zero if no server response code
  47. has been received. Note that a proxy's CONNECT response should be read with
  48. \fICURLINFO_HTTP_CONNECTCODE\fP and not this.
  49. Support for SMTP responses added in 7.25.0.
  50. .IP CURLINFO_HTTP_CONNECTCODE
  51. Pass a pointer to a long to receive the last received proxy response code to a
  52. CONNECT request.
  53. .IP CURLINFO_FILETIME
  54. Pass a pointer to a long to receive the remote time of the retrieved document
  55. (in number of seconds since 1 jan 1970 in the GMT/UTC time zone). If you get
  56. -1, it can be because of many reasons (unknown, the server hides it or the
  57. server doesn't support the command that tells document time etc) and the time
  58. of the document is unknown. Note that you must tell the server to collect this
  59. information before the transfer is made, by using the
  60. \fICURLOPT_FILETIME(3)\fP option to \fIcurl_easy_setopt(3)\fP or you will
  61. unconditionally get a -1 back. (Added in 7.5)
  62. .IP CURLINFO_TOTAL_TIME
  63. Pass a pointer to a double to receive the total time in seconds for the
  64. previous transfer, including name resolving, TCP connect etc.
  65. .IP CURLINFO_NAMELOOKUP_TIME
  66. Pass a pointer to a double to receive the time, in seconds, it took from the
  67. start until the name resolving was completed.
  68. .IP CURLINFO_CONNECT_TIME
  69. Pass a pointer to a double to receive the time, in seconds, it took from the
  70. start until the connect to the remote host (or proxy) was completed.
  71. .IP CURLINFO_APPCONNECT_TIME
  72. Pass a pointer to a double to receive the time, in seconds, it took from the
  73. start until the SSL/SSH connect/handshake to the remote host was completed.
  74. This time is most often very near to the PRETRANSFER time, except for cases
  75. such as HTTP pippelining where the pretransfer time can be delayed due to
  76. waits in line for the pipeline and more. (Added in 7.19.0)
  77. .IP CURLINFO_PRETRANSFER_TIME
  78. Pass a pointer to a double to receive the time, in seconds, it took from the
  79. start until the file transfer is just about to begin. This includes all
  80. pre-transfer commands and negotiations that are specific to the particular
  81. protocol(s) involved. It does \fInot\fP involve the sending of the protocol-
  82. specific request that triggers a transfer.
  83. .IP CURLINFO_STARTTRANSFER_TIME
  84. Pass a pointer to a double to receive the time, in seconds, it took from the
  85. start until the first byte is received by libcurl. This includes
  86. CURLINFO_PRETRANSFER_TIME and also the time the server needs to calculate the
  87. result.
  88. .IP CURLINFO_REDIRECT_TIME
  89. Pass a pointer to a double to receive the total time, in seconds, it took for
  90. all redirection steps include name lookup, connect, pretransfer and transfer
  91. before final transaction was started. CURLINFO_REDIRECT_TIME contains the
  92. complete execution time for multiple redirections. (Added in 7.9.7)
  93. .IP CURLINFO_REDIRECT_COUNT
  94. Pass a pointer to a long to receive the total number of redirections that were
  95. actually followed. (Added in 7.9.7)
  96. .IP CURLINFO_REDIRECT_URL
  97. Pass a pointer to a char pointer to receive the URL a redirect \fIwould\fP
  98. take you to if you would enable \fICURLOPT_FOLLOWLOCATION(3)\fP. This can come
  99. very handy if you think using the built-in libcurl redirect logic isn't good
  100. enough for you but you would still prefer to avoid implementing all the magic
  101. of figuring out the new URL. (Added in 7.18.2)
  102. .IP CURLINFO_SIZE_UPLOAD
  103. Pass a pointer to a double to receive the total amount of bytes that were
  104. uploaded.
  105. .IP CURLINFO_SIZE_DOWNLOAD
  106. Pass a pointer to a double to receive the total amount of bytes that were
  107. downloaded. The amount is only for the latest transfer and will be reset again
  108. for each new transfer. This counts actual payload data, what's also commonly
  109. called body. All meta and header data are excluded and will not be counted in
  110. this number.
  111. .IP CURLINFO_SPEED_DOWNLOAD
  112. Pass a pointer to a double to receive the average download speed that curl
  113. measured for the complete download. Measured in bytes/second.
  114. .IP CURLINFO_SPEED_UPLOAD
  115. Pass a pointer to a double to receive the average upload speed that curl
  116. measured for the complete upload. Measured in bytes/second.
  117. .IP CURLINFO_HEADER_SIZE
  118. Pass a pointer to a long to receive the total size of all the headers
  119. received. Measured in number of bytes.
  120. .IP CURLINFO_REQUEST_SIZE
  121. Pass a pointer to a long to receive the total size of the issued
  122. requests. This is so far only for HTTP requests. Note that this may be more
  123. than one request if FOLLOWLOCATION is true.
  124. .IP CURLINFO_SSL_VERIFYRESULT
  125. Pass a pointer to a long to receive the result of the certification
  126. verification that was requested (using the \fICURLOPT_SSL_VERIFYPEER(3)\fP
  127. option to \fIcurl_easy_setopt(3)\fP).
  128. .IP CURLINFO_SSL_ENGINES
  129. Pass the address of a 'struct curl_slist *' to receive a linked-list of
  130. OpenSSL crypto-engines supported. Note that engines are normally implemented
  131. in separate dynamic libraries. Hence not all the returned engines may be
  132. available at run-time. \fBNOTE:\fP you must call \fIcurl_slist_free_all(3)\fP
  133. on the list pointer once you're done with it, as libcurl will not free the
  134. data for you. (Added in 7.12.3)
  135. .IP CURLINFO_CONTENT_LENGTH_DOWNLOAD
  136. Pass a pointer to a double to receive the content-length of the download. This
  137. is the value read from the Content-Length: field. Since 7.19.4, this returns -1
  138. if the size isn't known.
  139. .IP CURLINFO_CONTENT_LENGTH_UPLOAD
  140. Pass a pointer to a double to receive the specified size of the upload. Since
  141. 7.19.4, this returns -1 if the size isn't known.
  142. .IP CURLINFO_CONTENT_TYPE
  143. Pass a pointer to a char pointer to receive the content-type of the downloaded
  144. object. This is the value read from the Content-Type: field. If you get NULL,
  145. it means that the server didn't send a valid Content-Type header or that the
  146. protocol used doesn't support this.
  147. .IP CURLINFO_PRIVATE
  148. Pass a pointer to a char pointer to receive the pointer to the private data
  149. associated with the curl handle (set with the \fICURLOPT_PRIVATE(3)\fP option
  150. to \fIcurl_easy_setopt(3)\fP). Please note that for internal reasons, the
  151. value is returned as a char pointer, although effectively being a 'void *'.
  152. (Added in 7.10.3)
  153. .IP CURLINFO_HTTPAUTH_AVAIL
  154. Pass a pointer to a long to receive a bitmask indicating the authentication
  155. method(s) available. The meaning of the bits is explained in the
  156. \fICURLOPT_HTTPAUTH(3)\fP option for \fIcurl_easy_setopt(3)\fP. (Added in
  157. 7.10.8)
  158. .IP CURLINFO_PROXYAUTH_AVAIL
  159. Pass a pointer to a long to receive a bitmask indicating the authentication
  160. method(s) available for your proxy authentication. (Added in 7.10.8)
  161. .IP CURLINFO_OS_ERRNO
  162. Pass a pointer to a long to receive the errno variable from a connect failure.
  163. Note that the value is only set on failure, it is not reset upon a
  164. successful operation. (Added in 7.12.2)
  165. .IP CURLINFO_NUM_CONNECTS
  166. Pass a pointer to a long to receive how many new connections libcurl had to
  167. create to achieve the previous transfer (only the successful connects are
  168. counted). Combined with \fICURLINFO_REDIRECT_COUNT\fP you are able to know
  169. how many times libcurl successfully reused existing connection(s) or not. See
  170. the Connection Options of \fIcurl_easy_setopt(3)\fP to see how libcurl tries
  171. to make persistent connections to save time. (Added in 7.12.3)
  172. .IP CURLINFO_PRIMARY_IP
  173. Pass a pointer to a char pointer to receive the pointer to a zero-terminated
  174. string holding the IP address of the most recent connection done with this
  175. \fBcurl\fP handle. This string may be IPv6 if that's enabled. Note that you
  176. get a pointer to a memory area that will be re-used at next request so you
  177. need to copy the string if you want to keep the information. (Added in 7.19.0)
  178. .IP CURLINFO_PRIMARY_PORT
  179. Pass a pointer to a long to receive the destination port of the most recent
  180. connection done with this \fBcurl\fP handle. (Added in 7.21.0)
  181. .IP CURLINFO_LOCAL_IP
  182. Pass a pointer to a char pointer to receive the pointer to a zero-terminated
  183. string holding the local (source) IP address of the most recent connection done
  184. with this \fBcurl\fP handle. This string may be IPv6 if that's enabled. The
  185. same restrictions apply as to \fICURLINFO_PRIMARY_IP\fP. (Added in 7.21.0)
  186. .IP CURLINFO_LOCAL_PORT
  187. Pass a pointer to a long to receive the local (source) port of the most recent
  188. connection done with this \fBcurl\fP handle. (Added in 7.21.0)
  189. .IP CURLINFO_COOKIELIST
  190. Pass a pointer to a 'struct curl_slist *' to receive a linked-list of all
  191. cookies cURL knows (expired ones, too). Don't forget to
  192. \fIcurl_slist_free_all(3)\fP the list after it has been used. If there are no
  193. cookies (cookies for the handle have not been enabled or simply none have been
  194. received) 'struct curl_slist *' will be set to point to NULL. (Added in
  195. 7.14.1)
  196. .IP CURLINFO_LASTSOCKET
  197. Pass a pointer to a long to receive the last socket used by this curl
  198. session. If the socket is no longer valid, -1 is returned. When you finish
  199. working with the socket, you must call curl_easy_cleanup() as usual and let
  200. libcurl close the socket and cleanup other resources associated with the
  201. handle. This is typically used in combination with
  202. \fICURLOPT_CONNECT_ONLY(3)\fP. (Added in 7.15.2)
  203. NOTE: this API is not really working on win64, since the SOCKET type on win64
  204. is 64 bit large while its 'long' is only 32 bits.
  205. .IP CURLINFO_FTP_ENTRY_PATH
  206. Pass a pointer to a char pointer to receive a pointer to a string holding the
  207. path of the entry path. That is the initial path libcurl ended up in when
  208. logging on to the remote FTP server. This stores a NULL as pointer if
  209. something is wrong. (Added in 7.15.4)
  210. Also works for SFTP since 7.21.4
  211. .IP CURLINFO_CERTINFO
  212. Pass a pointer to a 'struct curl_certinfo *' and you'll get it set to point to
  213. struct that holds a number of linked lists with info about the certificate
  214. chain, assuming you had \fICURLOPT_CERTINFO(3)\fP enabled when the previous
  215. request was done. The struct reports how many certs it found and then you can
  216. extract info for each of those certs by following the linked lists. The info
  217. chain is provided in a series of data in the format "name:content" where the
  218. content is for the specific named data. See also the certinfo.c example. NOTE:
  219. this option is only available in libcurl built with OpenSSL, NSS, GSKit or
  220. QsoSSL support. (Added in 7.19.1)
  221. .IP CURLINFO_TLS_SESSION
  222. Pass a pointer to a 'struct curl_tlsinfo *'. The pointer will be initialized
  223. to refer to a 'struct curl_tlsinfo *' that will contain an enum indicating the
  224. SSL library used for the handshake and the respective internal TLS session
  225. structure of this underlying SSL library.
  226. This may then be used to extract certificate information in a format
  227. convenient for further processing, such as manual validation. NOTE: this
  228. option may not be available for all SSL backends; unsupported SSL backends
  229. will return 'CURLSSLBACKEND_NONE' to indicate that they are not supported;
  230. this does not mean that no SSL backend was used. (Added in 7.34.0)
  231. .IP CURLINFO_CONDITION_UNMET
  232. Pass a pointer to a long to receive the number 1 if the condition provided in
  233. the previous request didn't match (see \fICURLOPT_TIMECONDITION(3)\fP). Alas,
  234. if this returns a 1 you know that the reason you didn't get data in return is
  235. because it didn't fulfill the condition. The long ths argument points to will
  236. get a zero stored if the condition instead was met. (Added in 7.19.4)
  237. .IP CURLINFO_RTSP_SESSION_ID
  238. Pass a pointer to a char pointer to receive a pointer to a string holding the
  239. most recent RTSP Session ID.
  240. Applications wishing to resume an RTSP session on another connection should
  241. retrieve this info before closing the active connection.
  242. .IP CURLINFO_RTSP_CLIENT_CSEQ
  243. Pass a pointer to a long to receive the next CSeq that will be used by the
  244. application.
  245. .IP CURLINFO_RTSP_SERVER_CSEQ
  246. Pass a pointer to a long to receive the next server CSeq that will be expected
  247. by the application.
  248. \fI(NOTE: listening for server initiated requests is currently
  249. unimplemented).\fP
  250. Applications wishing to resume an RTSP session on another connection should
  251. retrieve this info before closing the active connection.
  252. .IP CURLINFO_RTSP_CSEQ_RECV
  253. Pass a pointer to a long to receive the most recently received CSeq from the
  254. server. If your application encounters a \fICURLE_RTSP_CSEQ_ERROR\fP then you
  255. may wish to troubleshoot and/or fix the CSeq mismatch by peeking at this value.
  256. .SH TIMES
  257. .nf
  258. An overview of the six time values available from curl_easy_getinfo()
  259. curl_easy_perform()
  260. |
  261. |--NAMELOOKUP
  262. |--|--CONNECT
  263. |--|--|--APPCONNECT
  264. |--|--|--|--PRETRANSFER
  265. |--|--|--|--|--STARTTRANSFER
  266. |--|--|--|--|--|--TOTAL
  267. |--|--|--|--|--|--REDIRECT
  268. .fi
  269. .IP NAMELOOKUP
  270. \fICURLINFO_NAMELOOKUP_TIME\fP. The time it took from the start until the name
  271. resolving was completed.
  272. .IP CONNECT
  273. \fICURLINFO_CONNECT_TIME\fP. The time it took from the start until the connect
  274. to the remote host (or proxy) was completed.
  275. .IP APPCONNECT
  276. \fICURLINFO_APPCONNECT_TIME\fP. The time it took from the start until the SSL
  277. connect/handshake with the remote host was completed. (Added in in 7.19.0)
  278. .IP PRETRANSFER
  279. \fICURLINFO_PRETRANSFER_TIME\fP. The time it took from the start until the
  280. file transfer is just about to begin. This includes all pre-transfer commands
  281. and negotiations that are specific to the particular protocol(s) involved.
  282. .IP STARTTRANSFER
  283. \fICURLINFO_STARTTRANSFER_TIME\fP. The time it took from the start until the
  284. first byte is received by libcurl.
  285. .IP TOTAL
  286. \fICURLINFO_TOTAL_TIME\fP. Total time of the previous request.
  287. .IP REDIRECT
  288. \fICURLINFO_REDIRECT_TIME\fP. The time it took for all redirection steps
  289. include name lookup, connect, pretransfer and transfer before final
  290. transaction was started. So, this is zero if no redirection took place.
  291. .SH RETURN VALUE
  292. If the operation was successful, CURLE_OK is returned. Otherwise an
  293. appropriate error code will be returned.
  294. .SH "SEE ALSO"
  295. .BR curl_easy_setopt "(3)"