- Oct 12, 2013
-
-
Daniel Stenberg authored
The option '--bearer' might be slightly ambiguous in name. It doesn't create any conflict that I am aware of at the moment, however, OAUTH v2 is not the only authentication mechanism which uses "bearer" tokens. Reported-by: Kyle L. Huff URL: http://curl.haxx.se/mail/lib-2013-10/0064.html
-
- Oct 11, 2013
-
-
Heinrich Schaefer authored
-
- Oct 02, 2013
-
-
Daniel Stenberg authored
CURLINFO_SSL_VERIFYRESULT is only implemented for the OpenSSL and NSS backends and not for any other!
-
- Sep 30, 2013
-
-
Daniel Stenberg authored
-
- Sep 28, 2013
-
-
Daniel Stenberg authored
The comment mentioned the need to free the data, but the example already does that free
-
Daniel Stenberg authored
This is similar to getinmemory.c but with an initial POST. Combined-by: Ulf Samuelsson
-
- Sep 21, 2013
-
-
Steve Holme authored
Added missing information, from curl 7.31.0, regarding the use of the optional login options that may be specified as part of --user. For example: --user 'user:password;auth=NTLM' in IMAP, POP3 and SMTP protocols.
-
- Sep 20, 2013
-
-
Daniel Stenberg authored
-
Kim Vandry authored
-
Steve Holme authored
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>".
-
- Sep 13, 2013
-
-
Daniel Stenberg authored
URL: http://curl.haxx.se/bug/view.cgi?id=1279 Suggested-by: Jerry Krinock
-
Daniel Stenberg authored
URL: http://curl.haxx.se/bug/view.cgi?id=1278 Reported-by: Gorilla Maguila
-
- Sep 12, 2013
-
-
Kim Vandry authored
-
Daniel Stenberg authored
... and a few more cleanups/clarifications
-
- Sep 08, 2013
-
-
Clemens Gruber authored
-
- Sep 06, 2013
-
-
Daniel Stenberg authored
-
- Sep 05, 2013
-
-
Nick Zitzmann authored
I also documented the fact that the OpenSSL engine also supports them.
-
Daniel Stenberg authored
CURL_HTTP_VERSION_2_0 and CURL_VERSION_HTTP2 are new
-
- Sep 04, 2013
-
-
Daniel Stenberg authored
-
- Aug 31, 2013
-
-
Daniel Stenberg authored
-
- Aug 30, 2013
-
-
Kyle L. Huff authored
-
Kyle L. Huff authored
-
- Aug 28, 2013
-
-
Daniel Stenberg authored
-
- Aug 25, 2013
-
-
Daniel Stenberg authored
The old numbers would still redirect but who knows for how long...
-
- Aug 24, 2013
-
-
Daniel Stenberg authored
Several language fixes. Several reformats that should make the HTML generation of this document look better. Reported-by: Dave Thompson
-
- Aug 20, 2013
-
-
Daniel Stenberg authored
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.
-
- Aug 11, 2013
-
-
Daniel Stenberg authored
-
- Aug 09, 2013
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Aug 08, 2013
-
-
John E. Malmberg authored
-
Daniel Stenberg authored
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
-
- Aug 06, 2013
-
-
Daniel Stenberg authored
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
-
Daniel Stenberg authored
-
- Aug 02, 2013
-
-
Steve Holme authored
This reverts commit 82ab5f1b as this was the wrong place to document the complexity of IMAP URLs and Custom Requests.
-
Steve Holme authored
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.
-
- Jul 29, 2013
-
-
Daniel Stenberg authored
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
-
- Jul 18, 2013
-
-
Daniel Stenberg authored
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.
-
- Jul 16, 2013
-
-
Daniel Stenberg authored
-
- Jul 14, 2013
-
-
Dave Reisner authored
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).
-
Dave Reisner authored
-