Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-07 | qssl: reflect recent code changes in SSL interface | Kamil Dudka | |
Reported by Guenter Knauf. | |||
2010-04-04 | refactorize interface of Curl_ssl_recv/Curl_ssl_send | Kamil Dudka | |
2010-04-01 | fix SFTP download hang | Daniel Stenberg | |
Matt Wixson found and fixed a bug in the SCP/SFTP area where the code treated a 0 return code from libssh2 to be the same as EAGAIN while in reality it isn't. The problem caused a hang in SFTP transfers from a MessageWay server. | |||
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2010-03-19 | - Improved Curl_read() to not ignore the error returned from Curl_ssl_recv(). | Kamil Dudka | |
2010-02-04 | fix printf-style format strings | Yang Tse | |
2010-02-02 | Fix compiler warning: conditional expression is constant | Yang Tse | |
2010-01-22 | wrap long lines and do some indent policing | Daniel Stenberg | |
2010-01-21 | Chris Conroy brought support for RTSP transfers, and with it comes 8(!) new | Daniel Stenberg | |
libcurl options for controlling what to get and how to receive posssibly interleaved RTP data. Initial commit. | |||
2009-06-10 | - Fabian Keil ran clang on the (lib)curl code, found a bunch of warnings and | Daniel Stenberg | |
contributed a range of patches to fix them. | |||
2009-05-11 | Internal cleanup: KEEP_WRITE and KEEP_READ are now called KEEP_SEND and | Daniel Stenberg | |
KEEP_RECV to better match the general terminology: receive and send is what we do from the (remote) servers. We read and write from and to the local fs. | |||
2009-04-21 | libcurl's memory.h renamed to curl_memory.h | Yang Tse | |
2009-03-09 | - Frank Hempel found out a bug and provided the fix: | Daniel Stenberg | |
curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE option. It only enabled the cookie engine in the destination handle if data->cookies is not NULL (where data is the source handle). In case of a newly initialized handle which just had the cookie support enabled by a curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was still NULL because the setopt-call only appends the value to data->change.cookielist, hence duplicating this handle would not have the cookie engine switched on. We also concluded that the slist-functionality would be suitable for being put in its own module rather than simply hanging out in lib/sendf.c so I created lib/slist.[ch] for them. | |||
2009-01-07 | Created a CURLMIN macro to match CURLMAX | Dan Fandrich | |
2008-11-16 | Christian Krause fixed a build failure when building with gss support | Daniel Stenberg | |
enabled and FTP disabled. | |||
2008-11-13 | - Fixed a potential data loss in Curl_client_write() when the transfer is | Michal Marek | |
paused. | |||
2008-11-02 | Marked with TODO comments a number of problems in the Kerberos code detected | Dan Fandrich | |
while investigating the issue in http://curl.haxx.se/mail/lib-2008-09/0262.html I'm hesitant to fix them because I have no way of testing the result. | |||
2008-10-22 | Changed some arrays of char* to arrays of char[] to reduce data size and | Dan Fandrich | |
run-time relocations. | |||
2008-09-30 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2008-09-29 | made Curl_read_plain() return an 'int' instead of CURLcode since it actually | Daniel Stenberg | |
returns -1 in EAGAIN cases and that's not valid CURLcode | |||
2008-09-22 | - Made the SOCKS code use the new Curl_read_plain() function to fix the bug | Daniel Stenberg | |
Markus Moeller reported: http://curl.haxx.se/mail/archive-2008-09/0016.html - recv() errors other than those equal to EAGAIN now cause proper CURLE_RECV_ERROR to get returned. This made test case 160 fail so I've now disabled it until we can figure out another way to exercise that logic. | |||
2008-09-06 | remove unnecessary typecasting of malloc() | Yang Tse | |
2008-09-05 | Use realloc when paused in Curl_client_write | Dan Fandrich | |
2008-09-05 | - Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By | Daniel Stenberg | |
enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS or FTPS), libcurl will gather lots of server certificate info and that info can then get extracted by a client after the request has completed with curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing helped me test and smoothen out this feature. Unfortunately, this feature currently only works with libcurl built to use OpenSSL. This feature was sponsored by networking4all.com - thanks! | |||
2008-09-04 | Made some variables const | Dan Fandrich | |
2008-06-20 | - Hans-Jurgen May pointed out that trying SCP or SFTP over a SOCKS proxy | Daniel Stenberg | |
crashed libcurl. This is now addressed by making sure we use "plain send" internally when doing the socks handshake instead of the Curl_write() function which is designed to use the "target" protocol. That's then SCP or SFTP in this case. I also took the opportunity and cleaned up some ssh- related #ifdefs in the code for readability. | |||
2008-05-09 | - Make Curl_write and it's callees accept a const pointer, in preparation | Michal Marek | |
of tetetest's patch for curl_easy_send() | |||
2008-02-20 | - Based on initial work done by Gautam Kachroo to address a bug, we now keep | Daniel Stenberg | |
better control at the exact state of the connection's SSL status so that we know exactly when it has completed the SSL negotiation or not so that there won't be accidental re-uses of connections that are wrongly believed to be in SSL-completed-negotiate state. | |||
2008-01-28 | this was modified this year so we bump the copyright year | Daniel Stenberg | |
2008-01-21 | Dmitry Kurochkin removed the cancelled state for pipelining, as we agreed | Daniel Stenberg | |
that it is bad anyway. Starting now, removing a handle that is in used in a pipeline will break the pipeline - it'll be set back up again but still... | |||
2008-01-08 | Introducing curl_easy_pause() and new magic return codes for both the read | Daniel Stenberg | |
and the write callbacks that now can make a connection's reading and/or writing get paused. | |||
2007-12-09 | Andrew Moise filed bug report #1847501 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1847501) and pointed out a memcpy() that should be memmove() in the convert_lineends() function. | |||
2007-12-08 | All static functions that were previously name Curl_* something no longer | Daniel Stenberg | |
use that prefix as we use that prefix only for library-wide internal global symbols. | |||
2007-11-05 | removed space after if and while before the parenthesis for better source code | Daniel Stenberg | |
consistency | |||
2007-10-29 | Reverted the const change--what was I thinking? | Dan Fandrich | |
2007-10-29 | Made some pointers const | Dan Fandrich | |
2007-09-27 | Enabled a few more gcc warnings with --enable-debug. Renamed a few | Dan Fandrich | |
variables to avoid shadowing global declarations. | |||
2007-07-23 | Implemented only the parts of Patrick Monnerat's OS/400 patch that renamed | Dan Fandrich | |
some few internal identifiers to avoid conflicts, which could be useful on other platforms. | |||
2007-07-01 | Thomas J. Moore provided a patch that introduces Kerberos5 support in | Daniel Stenberg | |
libcurl. This also makes the options change name to --krb (from --krb4) and CURLOPT_KRBLEVEL (from CURLOPT_KRB4LEVEL) but the old names are still | |||
2007-05-02 | spell and language fix | Daniel Stenberg | |
2007-04-24 | Robert Iakobashvili made the 'master_buffer' get allocated first once it is | Daniel Stenberg | |
can/will be used as it then makes the common cases save 16KB of data for each easy handle that isn't used for pipelining. | |||
2007-03-21 | reverted back to previous version => ↵ | Yang Tse | |
http://curl.haxx.se/mail/lib-2007-03/0258.html | |||
2007-03-21 | avoid the use of variadic macros for greater portability | Yang Tse | |
2007-02-26 | Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-files | Gisle Vanem | |
since they're already included through "setup.h". | |||
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-04 | Suppress warning "'nread' might be used uninitialized in this function". | Gisle Vanem | |
2007-02-02 | prefer using the (upcoming) non-blocking libssh2 API | Daniel Stenberg | |
2007-01-27 | Compiler warning fix | Yang Tse | |
2007-01-17 | Supress "comparison between signed and unsigned" warning. | Gisle Vanem | |
2007-01-16 | restore previous addition to the amount of data that is returned | Daniel Stenberg | |