Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-07 | Major overhaul introducing http pipelining support and shared connection | Daniel Stenberg | |
cache within the multi handle. | |||
2006-09-04 | oops, we're on the .6 track now | Daniel Stenberg | |
2006-09-03 | Watcom lacks <sys/time.h>. | Gisle Vanem | |
2006-08-29 | Metaware's High-C has an ISO cpp. | Gisle Vanem | |
2006-08-29 | David McCreedy added CURLOPT_SOCKOPTFUNCTION and CURLOPT_SOCKOPTDATA to | Daniel Stenberg | |
allow applications to set their own socket options. | |||
2006-08-11 | Use __minix to detect Minix, which works on both ACK and GCC. | Dan Fandrich | |
2006-08-04 | Initial stab at making libcurl compile under Minix 3. | Dan Fandrich | |
2006-08-04 | Added 'curl_version_info_data::iconv_ver_num' for iconv version. | Gisle Vanem | |
2006-08-04 | Fixed typo. | Gisle Vanem | |
2006-08-03 | adding CURLM_CALL_MULTI_SOCKET that's just the same as CURLM_CALL_MULTI_PERFORM | Daniel Stenberg | |
2006-07-30 | curl_multi_socket() and curl_multi_socket_all() got modified prototypes: they | Daniel Stenberg | |
both now provide the number of running handles back to the calling function. | |||
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-11 | Enable --enable-hidden-symbols for SunPro C | Dan Fandrich | |
2006-07-05 | Prevent definition of HAVE_WINxxx_H symbols and avoid inclusion of Windows ↵ | Yang Tse | |
headers when compiled with Cygwin in POSIX emulation mode. | |||
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-12 | Implemented --enable-hidden-symbols configure option to enable | Dan Fandrich | |
-fvisibility=hidden on gcc >= 4.0. This reduces the size of the libcurl binary and speeds up dynamic linking by hiding all the internal symbols from the symbol table. | |||
2006-06-12 | starting the journey towards the next release | Daniel Stenberg | |
2006-04-26 | Added SalfordC support. | Gisle Vanem | |
2006-04-19 | CURL_VERSION_CONV is returned by curl_version_info if libcurl has been built | Daniel Stenberg | |
to allow/support character conversions | |||
2006-04-10 | curl_multi_socket() updates | Daniel Stenberg | |
2006-04-09 | CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore! | Daniel Stenberg | |
2006-04-07 | First commit of David McCreedy's EBCDIC and TPF changes. | Daniel Stenberg | |
2006-03-28 | for the CURLDEBUG case, we redefine sprintf and vsprintf to make us notice | Daniel Stenberg | |
if any use of such a function slip through | |||
2006-03-21 | David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry path | Daniel Stenberg | |
2006-03-20 | start working towards 7.15.4 | Daniel Stenberg | |
2006-03-14 | --ftp-method and CURLOPT_FTP_FILEMETHOD are now documented and usable | Daniel Stenberg | |
2006-02-27 | start over on what might become 7.15.3 | 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-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-28 | include sys/select.h on NetBSD as well | Daniel Stenberg | |
2006-01-09 | Made the copyright year match the latest modification's year. | Daniel Stenberg | |
2006-01-02 | Removed inaccurate comment for upcoming curl_multi_socket() and family. | Daniel Stenberg | |
Modified the callback proto used for it. | |||
2005-12-20 | Changes for PellesC compiler under Win32. | Gisle Vanem | |
2005-12-19 | Undo previous change. This header file belongs to the public | Yang Tse | |
interface and the change could break the compilation of thrid party apps which link against this library. | |||
2005-12-18 | Cleanup windows header includes. Where aplicable, inclusion of | Yang Tse | |
windows.h winsock.h winsock2.h ws2tcpip.h is done in setup.h | |||
2005-12-12 | lcc isn't Windows-only, so check for it in conjunction with WIN32 | Dan Fandrich | |
2005-12-06 | start working on 7.15.2 | Daniel Stenberg | |
2005-12-02 | Yang Tse adjusted the multiple header inclusion prevention definition | Daniel Stenberg | |
H_MPRINTF to our more used style __CURL_MPRINTF_H | |||
2005-11-28 | new experimental "ftp method" code | Daniel Stenberg | |
2005-11-28 | added note about the inclusion of curl.h from within this file | Daniel Stenberg | |
2005-10-18 | Mohun Biswas' suggested change to prevent GNU indent to warn on the =-1 line. | Daniel Stenberg | |
2005-10-14 | Reverted the LIBCURL_VERSION_NUM change from October 6. As Dave Dribin | Daniel Stenberg | |
reported, the define is used by the configure script and is assumed to use the 0xYYXXZZ format. This made "curl-config --vernum" fail in the 7.15.0 release version. | |||
2005-10-13 | start working on 7.15.1 | Daniel Stenberg | |
2005-10-06 | we all the next version 7.15.0 due to the new TFTP support | Daniel Stenberg | |
2005-09-04 | Added FTP_SKIP_PASV_IP and --ftp-skip-pasv-ip | Daniel Stenberg | |
2005-09-02 | John Kelly added TFTP support to libcurl. A bunch of new error codes was | Daniel Stenberg | |
added. TODO: add them to docs. add TFTP server to test suite. add TFTP to list of protocols whereever those are mentioned. | |||
2005-09-01 | work on 7.14.2 starts now | Daniel Stenberg | |
2005-08-24 | Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible | Daniel Stenberg | |
from the command line tool with --ignore-content-length. This will make it easier to download files from Apache 1.x (and similar) servers that are still having problems serving files larger than 2 or 4 GB. When this option is enabled, curl will simply have to wait for the server to close the connection to signal end of transfer. I wrote test case 269 that runs a simple test that this works. |