Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-29 | further clarifcation based on input from Anthony Bryan | Daniel Stenberg | |
2008-12-28 | Anthony Bryan's man page cleanup in language and spelling | Daniel Stenberg | |
2008-12-28 | Anthony Bryan reported quirks, I updated | Daniel Stenberg | |
2008-12-28 | Anthony Bryan reported and I corrected two typos. | Daniel Stenberg | |
2008-12-28 | The CURLOPT_KRBLEVEL description wasn't properly formatted and thus was | Daniel Stenberg | |
corrupted in ouputs. Another report from Anthony Bryan. | |||
2008-12-28 | Anthony Bryan reported this outputs wrong in the PDF and I've now tried to | Daniel Stenberg | |
escape these letters what I think is the correct way. | |||
2008-12-22 | - Anthony Bryan provided a set of patches that cleaned up manual language, | Daniel Stenberg | |
corrected spellings and more. | |||
2008-12-19 | expand the CURLOPT_POSTREDIR explanation | Daniel Stenberg | |
2008-12-10 | - Internet Explorer had a broken HTTP digest authentication before v7 and | Daniel Stenberg | |
there are servers "out there" that relies on the client doing this broken Digest authentication. Apache even comes with an option to work with such broken clients. The difference is only for URLs that contain a query-part (a '?'-letter and text to the right of it). libcurl now supports this quirk, and you enable it by setting the CURLAUTH_DIGEST_IE bit in the bitmask you pass to the CURLOPT_HTTPAUTH or CURLOPT_PROXYAUTH options. They are thus individually controlled to server and proxy. | |||
2008-12-09 | Documented CURLOPT_CONNECT_ONLY as being useful only on HTTP URLs. | Dan Fandrich | |
2008-11-17 | Fixed an outdated mention of having keep strings around in curl_easy_setopt | Dan Fandrich | |
calls. Added a paragraph explaining that libcurl takes care of low-level protocol details. Made a few minor edits. | |||
2008-11-05 | mention the speed unit for the _SPEED_LARGE options from bug #2226722 | Daniel Stenberg | |
2008-10-28 | Mention more restrictions on timeouts when using signals | Dan Fandrich | |
2008-10-28 | Philippe Vaucher pointed out this use of an outdated option name... | Daniel Stenberg | |
2008-10-17 | remove some spurious line-endings | Yang Tse | |
2008-10-16 | CURLOPT_POST301 => CURLOPT_POSTREDIR | Dan Fandrich | |
2008-10-16 | - Igor Novoseltsev added CURLOPT_PROXYUSER and CURLOPT_PROXYPASSWORD that then | Daniel Stenberg | |
make CURLOPT_PROXYUSERPWD sort of deprecated. The primary motive for adding these new options is that they have no problems with the colon separator that the CURLOPT_PROXYUSERPWD option does. | |||
2008-10-16 | mention the openssl requirement for the certinfo data | Daniel Stenberg | |
2008-10-16 | correct version number for the certinfo addition | Daniel Stenberg | |
2008-10-16 | Added CURLINFO_CERTINFO | Daniel Stenberg | |
2008-10-09 | Fixed a leftover reference to CURLOPT_FTP_SSL (thanks to Carlos Alloatti | Dan Fandrich | |
for spotting it). | |||
2008-10-08 | - Igor Novoseltsev brought a patch that introduced two new options to | Daniel Stenberg | |
curl_easy_setopt: CURLOPT_USERNAME and CURLOPT_PASSWORD that sort of deprecates the good old CURLOPT_USERPWD since they allow applications to set the user name and password independently and perhaps more importantly allow both to contain colon(s) which CURLOPT_USERPWD doesn't fully support. | |||
2008-09-10 | Checked in some grammatical and minor other fixes in the documentation and | Dan Fandrich | |
examples that I found in the FreeBSD ports system. | |||
2008-09-09 | Hammer home the fact that "multi interface" != "multi-threaded" | Dan Fandrich | |
2008-09-07 | SOCKS5_RESOLVE_LOCAL was just never added as an option! | Daniel Stenberg | |
2008-09-05 | - Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By | Daniel Stenberg | |
enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS or FTPS), libcurl will gather lots of server certificate info and that info can then get extracted by a client after the request has completed with curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing helped me test and smoothen out this feature. Unfortunately, this feature currently only works with libcurl built to use OpenSSL. This feature was sponsored by networking4all.com - thanks! | |||
2008-08-28 | Fixed a couple of typos | Dan Fandrich | |
2008-08-20 | Added an edited version of Vincent Le Normand's documentation of SFTP quote | Dan Fandrich | |
commands to the man pages. | |||
2008-08-06 | - mention curl_multi_socket_action() rather than the deprecated | Daniel Stenberg | |
curl_multi_socket() - don't claim that it has an argument named 'easy' because it doesn't! | |||
2008-07-30 | - Phil Blundell added the CURLOPT_SCOPE option, as well as adjusted the URL | Daniel Stenberg | |
parser to allow numerical IPv6-addresses to be specified with the scope given, as per RFC4007 - with a percent letter that itself needs to be URL escaped. For example, for an address of fe80::1234%1 the HTTP URL is: "http://[fe80::1234%251]/" | |||
2008-07-23 | Eliminated references to TRUE and FALSE since those identifiers aren't | Dan Fandrich | |
defined by the libcurl API. Also changed curl_easy_setopt examples to pass longs where appropriate. | |||
2008-07-23 | - I went over the curl_easy_setopt man page and replaced most references to | Daniel Stenberg | |
non-zero with the fixed value of 1. We should strive at making options support '1' for enabling them mentioned explicitly, as that then will allow us for to extend them in the future without breaking older programs. | |||
2008-07-10 | (Added in the section for CURLOPT_DNS_CACHE_TIMEOUT, pointed out on the | Daniel Stenberg | |
curl-library list on July 9th 2008 by Mathew Hounsell) NOTE: the name resolve functions of various libc implementations don't re-read name server information unless explicitly told so (by for example calling Ires_init(3). This may cause libcurl to keep using the older server even if DHCP has updated the server info, and this may look like a DNS cache issue to the casual libcurl-app user. | |||
2008-07-10 | updated to match current reality | Daniel Stenberg | |
2008-07-08 | Fixed test 554 to pass the torture test. | Dan Fandrich | |
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-30 | minor language fix | Daniel Stenberg | |
2008-06-08 | 7.19.0 is next | Daniel Stenberg | |
2008-06-08 | the next release is now called 7.19.0 | Daniel Stenberg | |
2008-06-06 | - Axel Tillequin and Arnaud Ebalard added support for CURLOPT_ISSUERCERT, for | Daniel Stenberg | |
OpenSSL, NSS and GnuTLS-built libcurls. | |||
2008-06-06 | mention added in 7.18.3 | Daniel Stenberg | |
2008-06-06 | - Axel Tillequin and Arnaud Ebalard added support for CURLOPT_CRLFILE, for | Daniel Stenberg | |
OpenSSL, NSS and GnuTLS-built libcurls. | |||
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-05-24 | Christopher Palow's multi interface docs updates | Daniel Stenberg | |
2008-05-24 | Nikolai Kondrashov provided a clarification for CURLOPT_HEADERFUNCTION | Daniel Stenberg | |
2008-05-12 | - Introducing curl_easy_send() and curl_easy_recv(). They can be used to send | Daniel Stenberg | |
and receive data over a connection previously setup with curl_easy_perform() and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to show how they can be used. | |||
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. | |||
2008-04-10 | mention what happens to the data when a write callback returns pause | Daniel Stenberg | |
2008-04-10 | clarify the COOKIE option a bit | Daniel Stenberg | |
2008-04-09 | "tag" the function referals properly | Daniel Stenberg | |