Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-20 | curl_easy_setopt.3: clarify that TIMEOUT and TIMEOUT_MS set the same value | Daniel Stenberg | |
2013-09-20 | Documented --dns-* options in curl manpage | Kim Vandry | |
2013-09-20 | pop3: Added basic SASL XOAUTH2 support | Steve Holme | |
Added the ability to use an XOAUTH2 bearer token [RFC6750] with POP3 for authentication using RFC6749 "OAuth 2.0 Authorization Framework". The bearer token is expected to be valid for the user specified in conn->user. If CURLOPT_XOAUTH2_BEARER is defined and the connection has an advertised auth mechanism of "XOAUTH2", the user and access token are formatted as a base64 encoded string and sent to the server as "AUTH XOAUTH2 <bearer token>". | |||
2013-09-13 | curl.1: detail how short/long options work | Daniel Stenberg | |
URL: http://curl.haxx.se/bug/view.cgi?id=1279 Suggested-by: Jerry Krinock | |||
2013-09-13 | curl_easy_setopt.3: mention RTMP URL quirks | Daniel Stenberg | |
URL: http://curl.haxx.se/bug/view.cgi?id=1278 Reported-by: Gorilla Maguila | |||
2013-09-12 | libcurl: New options to bind DNS to local interfaces or IP addresses | Kim Vandry | |
2013-09-12 | libcurl.3: for multi interface connections are held in the multi handle | Daniel Stenberg | |
... and a few more cleanups/clarifications | |||
2013-09-08 | curl_easy_pause: suggest one way to unpause | Clemens Gruber | |
2013-09-06 | --data: mention CRLF treatment when reading from file | Daniel Stenberg | |
2013-09-05 | darwinssl: add support for PKCS#12 files for client authentication | Nick Zitzmann | |
I also documented the fact that the OpenSSL engine also supports them. | |||
2013-09-05 | symbols: added HTTP2 symbols and sorted list | Daniel Stenberg | |
CURL_HTTP_VERSION_2_0 and CURL_VERSION_HTTP2 are new | |||
2013-09-04 | curl: add --http1.1 and --http2.0 options | Daniel Stenberg | |
2013-08-31 | -x: rephrased the --proxy section somewhat | Daniel Stenberg | |
2013-08-30 | docs: Added documentation for CURLOPT_BEARER | Kyle L. Huff | |
2013-08-30 | curl.1: Add usage of '--bearer' option | Kyle L. Huff | |
2013-08-28 | symbols-in-versions: add CURLOPT_XOAUTH2_BEARER | Daniel Stenberg | |
2013-08-26 | KNOWN_BUGS: refer to bug numbers with the existing number series | Daniel Stenberg | |
The old numbers would still redirect but who knows for how long... | |||
2013-08-24 | FAQ: editorial updates | Daniel Stenberg | |
Several language fixes. Several reformats that should make the HTML generation of this document look better. Reported-by: Dave Thompson | |||
2013-08-20 | CURLM_ADDED_ALREADY: new error code | Daniel Stenberg | |
Doing curl_multi_add_handle() on an easy handle that is already added to a multi handle now returns this error code. It previously returned CURLM_BAD_EASY_HANDLE for this condition. | |||
2013-08-11 | THANKS: added contributors from the 7.32.0 release notes | Daniel Stenberg | |
2013-08-09 | curl_multi_add_handle.3: ... that timer callback is for event-based | Daniel Stenberg | |
2013-08-09 | curl_multi_add_handle.3: mention the CURLMOPT_TIMERFUNCTION use | Daniel Stenberg | |
2013-08-08 | KNOWN_BUGS: 22 and 57 have been fixed and committed | John E. Malmberg | |
2013-08-08 | mk-ca-bundle.1: don't install on make install | Daniel Stenberg | |
Since the mk-ca-bundle tool itself isn't installed with make install, there's no point in installing its documentation. Bug: http://curl.haxx.se/mail/lib-2013-08/0057.html Reported-by: Guenter Knauf | |||
2013-08-06 | LIBCURL-STRUCTS: new document | Daniel Stenberg | |
This is the first version of this new document, detailing the seven perhaps most important internal structs in libcurl source code: 1.1 SessionHandle 1.2 connectdata 1.3 Curl_multi 1.4 Curl_handler 1.5 conncache 1.6 Curl_share 1.7 CookieInfo | |||
2013-08-06 | CONTRIBUTE: minor language polish | Daniel Stenberg | |
2013-08-02 | Revert "DOCS: Added IMAP URL example for listing new messages" | Steve Holme | |
This reverts commit 82ab5f1b0c7c3f as this was the wrong place to document the complexity of IMAP URLs and Custom Requests. | |||
2013-08-02 | DOCS: Added IMAP URL example for listing new messages | Steve Holme | |
In addition to listing the folder contents, in the URL examples, added an example to list the new messages waiting in the user's inbox. | |||
2013-07-29 | curl_easy_pause: on unpause, trigger mulit-socket handling | Daniel Stenberg | |
When the multi-socket API is used, we need the handle to be checked again when it gets unpaused. Bug: http://curl.haxx.se/mail/lib-2013-07/0239.html Reported-by: Justin Karneges | |||
2013-07-18 | CURLOPT_XFERINFOFUNCTION: introducing a new progress callback | Daniel Stenberg | |
CURLOPT_XFERINFOFUNCTION is now the preferred progress callback function and CURLOPT_PROGRESSFUNCTION is considered deprecated. This new callback uses pure 'curl_off_t' arguments to pass on full resolution sizes. It otherwise retains the same characteristics: the same call rate, the same meanings for the arguments and the return code is used the same way. The progressfunc.c example is updated to show how to use the new callback for newer libcurls while supporting the older one if built with an older libcurl or even built with a newer libcurl while running with an older. | |||
2013-07-17 | mk-ca-bundle.1: point out certdata.txt format docs | Daniel Stenberg | |
2013-07-14 | src/tool: allow timeouts to accept decimal values | Dave Reisner | |
Implement wrappers around strtod to convert the user argument to a double with sane error checking. Use this to allow --max-time and --connect-timeout to accept decimal values instead of strictly integers. The manpage is updated to make mention of this feature and, additionally, forewarn that the actual timeout of the operation can vary in its precision (particularly as the value increases in its decimal precision). | |||
2013-07-14 | curl.1: fix long line, found by checksrc.pl | Dave Reisner | |
2013-07-09 | Revert "curl.1: document the --time-cond option in the man page" | Kamil Dudka | |
This reverts commit 3a0e931fc715a80004958794a96b12cf90503f99 because the documentation of --time-cond was duplicated by mistake. Reported by: Dave Reisner | |||
2013-07-09 | curl.1: document the --sasl-ir option in the man page | Kamil Dudka | |
2013-07-09 | curl.1: document the --post303 option in the man page | Kamil Dudka | |
2013-07-09 | curl.1: document the --time-cond option in the man page | Kamil Dudka | |
2013-07-04 | Added libmetalink URL; added Android versions. | Guenter Knauf | |
2013-07-03 | examples: Moved usercertinmem.c to COMPLICATED_EXAMPLES | Dan Fandrich | |
This prevents it from being built during a "make check" since it depends on OpenSSL. | |||
2013-06-25 | curl.1: fix typo in --xattr description | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1252 Reported-by: Jean-Noël Rouvignac | |||
2013-06-23 | TODO: 1.8 Modified buffer size approach | Daniel Stenberg | |
Thoughts around buffer sizes and what might be possible to do... | |||
2013-06-22 | KNOWN_BUGS: #83 unable to load non-default openssl engines | Daniel Stenberg | |
2013-06-22 | docs: fix typo in curl_easy_getinfo manpage | Alessandro Ghedini | |
2013-06-22 | THANKS: added 24 new contributors from the 7.31.0 release | Daniel Stenberg | |
2013-06-20 | Use opened body.out file and write content to it. | Guenter Knauf | |
2013-06-18 | TODO: mention the DANE patch from March | Daniel Stenberg | |
2013-06-15 | TODO: HTTP2/SPDY support | Daniel Stenberg | |
2013-06-14 | curl_easy_setopt.3: clarify CURLOPT_PROGRESSFUNCTION frequency | Daniel Stenberg | |
Make it clearer that the CURLOPT_PROGRESSFUNCTION callback will be called more frequently than once per second when things are happening. | |||
2013-06-13 | curl_multi_wait.3: clarify the numfds counter | Daniel Stenberg | |
2013-06-11 | KNOWN_BUGS: #82 failed build with Borland compiler | Daniel Stenberg | |