Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-15 | - Changed the description of CURLINFO_OS_ERRNO to make it clear that the | Michal Marek | |
errno is not reset on success. | |||
2009-05-07 | - Man page *roff problems fixed thanks to input from Colin Watson. Problems | Daniel Stenberg | |
reported in the Debian package. | |||
2009-04-17 | As Jeff Pohlmeyer suggested: "pointer to 'char *'" is now instead put: | Daniel Stenberg | |
"pointer to a char pointer". | |||
2009-02-23 | - After a bug reported by James Cheng I've made curl_easy_getinfo() for | Daniel Stenberg | |
CURLINFO_CONTENT_LENGTH_DOWNLOAD and CURLINFO_CONTENT_LENGTH_UPLOAD return -1 if the sizes aren't know. Previously these returned 0, make it impossible to detect the difference between actually zero and unknown. | |||
2009-02-11 | - CURLINFO_CONDITION_UNMET was added to allow an application to get to know if | Daniel Stenberg | |
the condition in the previous request was unmet. This is typically a time condition set with CURLOPT_TIMECONDITION and was previously not possible to reliably figure out. From bug report #2565128 (http://curl.haxx.se/bug/view.cgi?id=2565128) | |||
2008-10-16 | mention the openssl requirement for the certinfo data | Daniel Stenberg | |
2008-10-16 | Added CURLINFO_CERTINFO | Daniel Stenberg | |
2008-07-03 | Introcuding a new timestamp for curl_easy_getinfo(): | Daniel Stenberg | |
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. | |||
2008-06-08 | 7.19.0 is next | Daniel Stenberg | |
2008-06-06 | - Added CURLINFO_PRIMARY_IP as a new information retrievable with | Daniel Stenberg | |
curl_easy_getinfo. It returns a pointer to a string with the most recently used IP address. Modified test case 500 to also verify this feature. The implementing of this feature was sponsored by Lenny Rachitsky at NeuStar. | |||
2008-04-30 | - To make it easier for applications that want lots of magic stuff done on | Daniel Stenberg | |
redirections and thus cannot use CURLOPT_FOLLOWLOCATION easily, we now introduce the new CURLINFO_REDIRECT_URL option that lets applications extract the URL libcurl would've redirected to if it had been told to. This then enables the application to continue to that URL as it thinks is suitable, without having to re-implement the magic of creating the new URL from the Location: header etc. Test 1029 verifies it. | |||
2007-08-01 | Patrick Monnerat and I modified libcurl so that now it *copies* all strings | Daniel Stenberg | |
passed to it with curl_easy_setopt()! Previously it has always just refered to the data, forcing the user to keep the data around until libcurl is done with it. That is now history and libcurl will instead clone the given strings and keep private copies. | |||
2007-05-03 | Fixed a few typos. | Dan Fandrich | |
2007-03-31 | add units to a few info | Daniel Stenberg | |
2006-06-08 | corrected the CURLINFO_TOTAL_TIME description | Daniel Stenberg | |
2006-03-21 | David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry path | Daniel Stenberg | |
2006-03-13 | Scott Worley's typo fixes | Daniel Stenberg | |
2006-02-11 | mention the CURLOPT_CONNECT_ONLY connection | Daniel Stenberg | |
2006-02-11 | Karl M added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options that | Daniel Stenberg | |
an app can use to let libcurl only connect to a remote host and then extract the socket from libcurl. libcurl will then not attempt to do any transfer at all after the connect is done. | |||
2005-10-06 | end the .nf section, mark the option names properly so that they end up | Daniel Stenberg | |
as links in the html version | |||
2005-10-06 | Added the info from getinfo-times as it really belongs in this man page. | Daniel Stenberg | |
2005-08-25 | CURLINFO_COOKIELIST is added in 7.14.1 | Daniel Stenberg | |
2005-08-18 | it isn't strictly necessary to use it after a perform | Daniel Stenberg | |
2005-07-27 | Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a | Daniel Stenberg | |
simple interface to extracting and setting cookies in libcurl's internal "cookie jar". See the new cookie_interface.c example code. | |||
2005-06-11 | CURLINFO_FILETIME returns the time for GMT | Daniel Stenberg | |
2004-12-22 | added CURLINFO_HTTP_CONNECTCODE | Daniel Stenberg | |
2004-12-14 | clarify that the app must free the engine list | Daniel Stenberg | |
2004-12-13 | Document CURLINFO_SSL_ENGINES and "--engine". | Gisle Vanem | |
2004-10-19 | CURLINFO_NUM_CONNECTS and more | Daniel Stenberg | |
2004-10-01 | mention when this option was added | Daniel Stenberg | |
2004-09-30 | - Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows an | Daniel Stenberg | |
app to retrieve the errno variable after a (connect) failure. It will make sense to provide this for more failures in a more generic way, but let's start like this. | |||
2004-08-24 | returned memory should not be freed | Daniel Stenberg | |
2004-03-24 | Tor Arntsen's major ispell patch | Daniel Stenberg | |
2004-02-27 | formatting update to produce better links with the new roffit version | Daniel Stenberg | |
2003-12-18 | Andrés García's update | Daniel Stenberg | |
2003-11-04 | consistant with other man pages | Daniel Stenberg | |
2003-08-20 | CURLINFO_RESPONSE_CODE instead of CURLINFO_HTTP_CODE | Daniel Stenberg | |
2003-08-08 | corrected main meta data title | Daniel Stenberg | |
2003-04-11 | clarified the CURLINFO_SIZE_DOWNLOAD somewhat on Juan F. Codagnone's | Daniel Stenberg | |
suggestion | |||
2002-11-20 | Kjetil Jacobsen's patch that introduces CURLOPT_PRIVATE and CURLINFO_PRIVATE | Daniel Stenberg | |
for storage and retrieval of private data in the curl handle. | |||
2002-04-25 | the TOTAL_TIME is not really total, as it excludes the connect time... | Daniel Stenberg | |
2002-04-17 | Dirk Manske's two new infos | Daniel Stenberg | |
2002-03-04 | ripped out from ../ and put in its own directory now | Daniel Stenberg | |