Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-17 | clarify the INFILESIZE option(s) | Daniel Stenberg | |
2007-01-09 | corrected example | Daniel Stenberg | |
2007-01-05 | - Linus Nielsen Feltzing introduced the --ftp-ssl-ccc command line option to | Daniel Stenberg | |
curl that uses the new CURLOPT_FTP_SSL_CCC option in libcurl. If enabled, it will make libcurl shutdown SSL/TLS after the authentication is done on a FTP-SSL operation. | |||
2006-12-31 | curl_easy_cleanup kills this memory too | Daniel Stenberg | |
2006-12-21 | CURLOPT_CAPATH is OpenSSL-only | Daniel Stenberg | |
2006-12-05 | Sh Diao reported that CURLOPT_CLOSEPOLICY doesn't work, and indeed, there is | Daniel Stenberg | |
no code present in the library that receives the option. Since it was not possible to use, we know that no current users exist and thus we simply removed it from the docs and made the code always use the default path of the code. | |||
2006-11-02 | mention the new options | Daniel Stenberg | |
2006-11-02 | James Housley brought support for SCP transfers | Daniel Stenberg | |
2006-10-25 | Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the | Daniel Stenberg | |
case when 401 or 407 are returned, *IF* no auth credentials have been given. The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401 and 407 cases when auth credentials is given, but we've now covered this somewhat more. You might get some amounts of headers transferred before this situation is detected, like for when a "100-continue" is received as a response to a POST/PUT and a 401 or 407 is received immediately afterwards. Added test 281 to verify this change. | |||
2006-10-21 | Armel Asselin separated CA cert verification problems from problems with | Daniel Stenberg | |
reading the (local) CA cert file to let users easier pinpoint the actual problem. CURLE_SSL_CACERT_BADFILE (77) is the new libcurl error code. | |||
2006-10-12 | clarify more | Daniel Stenberg | |
2006-10-12 | Starting now, adding an easy handle to a multi stack that was already added | Daniel Stenberg | |
to a multi stack will cause CURLM_BAD_EASY_HANDLE to get returned. | |||
2006-10-12 | Jeff Pohlmeyer has been working with the hiperfifo.c example source code, | Daniel Stenberg | |
and while doing so it became apparent that the current timeout system for the socket API really was a bit awkward since it become quite some work to be sure we have the correct timeout set. Jeff then provided the new CURLMOPT_TIMERFUNCTION that is yet another callback the app can set to get to know when the general timeout time changes and thus for an application like hiperfifo.c it makes everything a lot easier and nicer. There's a CURLMOPT_TIMERDATA option too of course in good old libcurl tradition. | |||
2006-10-08 | clarified more | Daniel Stenberg | |
2006-09-30 | Support for FTP third party transfers is now dropped | Daniel Stenberg | |
2006-09-27 | added more explanations | Daniel Stenberg | |
2006-09-26 | Armel Asselin's fix for the RESUME_FROM docu | Daniel Stenberg | |
2006-09-21 | Extended the explanation for CURLM_CALL_MULTI_PERFORM somewhat. | Daniel Stenberg | |
2006-09-11 | - Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a | Daniel Stenberg | |
handle that is part of a multi handle first removes the handle from the stack. - Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL session-ID re-use on demand since there obviously are broken servers out there that misbehave with session-IDs used. | |||
2006-09-08 | Mention that CURLOPT_MAX_RECV/SEND* were added in 7.15.5 | Daniel Stenberg | |
2006-09-07 | Major overhaul introducing http pipelining support and shared connection | Daniel Stenberg | |
cache within the multi handle. | |||
2006-09-03 | Mohun Biswas' improvements and clarifications about the options and how to use | Daniel Stenberg | |
them. | |||
2006-08-29 | David McCreedy added CURLOPT_SOCKOPTFUNCTION and CURLOPT_SOCKOPTDATA to | Daniel Stenberg | |
allow applications to set their own socket options. | |||
2006-08-23 | clarify the string syntax support in the CURLOPT_PROXY section | Daniel Stenberg | |
2006-08-09 | option name spell fix | Daniel Stenberg | |
2006-08-08 | Armel Asselin made the CURLOPT_PREQUOTE option work fine even when | Daniel Stenberg | |
CURLOPT_NOBODY is set true. PREQUOTE is then run roughly at the same place in the command sequence as it would have run if there would've been a transfer. | |||
2006-08-02 | a CURLOPT_PROGRESSFUNCTION clarification | Daniel Stenberg | |
2006-08-01 | updated docs with the new parameter | Daniel Stenberg | |
2006-07-26 | [Hiper-related work] Added a function called curl_multi_assign() that will | Daniel Stenberg | |
set a private pointer added to the internal libcurl hash table for the particular socket passed in to this function. | |||
2006-07-25 | Dan Nelson added the CURLOPT_FTP_ALTERNATIVE_TO_USER libcurl option and curl | Daniel Stenberg | |
tool option named --ftp-alternative-to-user. It provides a mean to send a particular command if the normal USER/PASS approach fails. | |||
2006-07-07 | mention the shared DNS stuff | Daniel Stenberg | |
2006-07-07 | mention the by-default "sharing" | Daniel Stenberg | |
2006-06-26 | changed wording slightly, and added standard boiler-plate header | Daniel Stenberg | |
2006-06-24 | Wallner's update | Daniel Stenberg | |
2006-06-24 | corrected introduction version number | Daniel Stenberg | |
2006-06-24 | Michael Wallner added curl_formget(), which allows an application to extract | Daniel Stenberg | |
(serialise) a previously built formpost (as with curl_formadd()). | |||
2006-06-22 | Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and | Daniel Stenberg | |
CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed to send or receive data. This kind of adds the the command line tool's option --limit-rate to the library. The rate limiting logic in the curl app is now removed and is instead provided by libcurl itself. Transfer rate limiting will now also work for -d and -F, which it didn't before. | |||
2006-06-21 | minor language edits bug reports 1510080 1510098 | Daniel Stenberg | |
2006-06-20 | bad syntax | Daniel Stenberg | |
2006-06-08 | corrected the CURLINFO_TOTAL_TIME description | Daniel Stenberg | |
2006-05-24 | Michael Wallner provided a patch that allows "SESS" to be set with | Daniel Stenberg | |
CURLOPT_COOKIELIST, which then makes all session cookies get cleared. (slightly edited by me, and the re-indent in cookie.c was also done by me) | |||
2006-05-09 | Andreas Ntaflos reported a bug in libcurl.m4: When configuring my GNU | Daniel Stenberg | |
autotools project, which optionally (default=yes) uses libcurl on a system without a (usable) libcurl installation, but not specifying `--without-libcurl', configure determines correctly that no libcurl is available, however, the LIBCURL variable gets expanded to `LIBCURL = -lcurl' in the resulting Makefiles. David Shaw fixed the flaw. | |||
2006-04-26 | updated with more error codes | Daniel Stenberg | |
2006-04-19 | the new conversion stuff documented (mostly by David McCreedy) | Daniel Stenberg | |
2006-04-10 | adding the new man pages to the package | Daniel Stenberg | |
2006-04-09 | CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore! | Daniel Stenberg | |
2006-04-09 | mention RFC 2396 for URL syntax spec | Daniel Stenberg | |
2006-04-08 | mention the outlength argument | Daniel Stenberg | |
2006-04-07 | First commit of David McCreedy's EBCDIC and TPF changes. | Daniel Stenberg | |
2006-03-21 | David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry path | Daniel Stenberg | |