Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2006-03-17 | slight rewording based on debian bug report #357388 by Justin Pryzby | Daniel Stenberg | |
2006-03-14 | --ftp-method and CURLOPT_FTP_FILEMETHOD are now documented and usable | Daniel Stenberg | |
2006-03-13 | Scott Worley's typo fixes | Daniel Stenberg | |
2006-03-02 | point out that CAINFO points out a file name by default | Daniel Stenberg | |
2006-02-21 | Peter Su added support for SOCKS4 proxies. Enable this by setting the proxy | Daniel Stenberg | |
type to the already provided type CURLPROXY_SOCKS4. I added a --socks4 option that works like the current --socks5 option but instead use the socks4 protocol. | |||
2006-02-17 | fixed formatting | 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. | |||
2006-02-09 | CURLOPT_NOSIGNAL might be a MUST to make threaded use work, like on AIX 5.2 | Daniel Stenberg | |
due to the use of the static variable for sigsetjmp() | |||
2006-02-07 | Rene Bernhardt found this typo | Daniel Stenberg | |
2006-01-30 | Added CURLOPT_LOCALPORT and CURLOPT_LOCALPORTRANGE to libcurl. Set with the | Daniel Stenberg | |
curl tool with --local-port. Plain and simply set the range of ports to bind the local end of connections to. Implemented on to popular demand. Not extensively tested. Please let me know how it works. | |||
2006-01-27 | typo pointed out by Mike Griffiths | Daniel Stenberg | |
2006-01-27 | Cyrill Osterwalder pointed out that sending "" as data in a header is in | Daniel Stenberg | |
fact equal to a blank one according to the spec. | |||
2006-01-17 | David Shaw: Here is the latest libcurl.m4 autoconf tests. It is updated with | Daniel Stenberg | |
the latest features and protocols that libcurl supports and has a minor fix to better deal with the obscure case where someone has more than one libcurl installed at the same time. | |||
2006-01-16 | David Shaw finally removed all traces of Gopher and we are now officially | Daniel Stenberg | |
not supporting it. It hasn't been functioning for years anyway, so this is just finally stating what already was true. And a cleanup at the same time. | |||
2006-01-15 | Bryan Henderson turned the 'initialized' variable for curl_global_init() | Daniel Stenberg | |
into a counter, and thus you can now do multiple curl_global_init() and you are then supposed to do the same amount of calls to curl_global_cleanup(). Bryan also updated the docs accordingly. | |||
2006-01-15 | adjusted to the new concept of the callback | Daniel Stenberg | |