Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-17 | We use this ZERO_NULL to avoid picky compiler warnings, | Yang Tse | |
when assigning a NULL pointer to a function pointer var. | |||
2007-10-13 | Made a few more functions static with the protocol handler table in place. | Dan Fandrich | |
2007-10-12 | Fixed a few compile errors and warnings. | Dan Fandrich | |
2007-10-12 | Added per-protocol callback static tables, replacing callback ptr storage | Patrick Monnerat | |
in the connectdata structure by a single handler table ptr. | |||
2007-10-02 | Fix memory leak under low memory conditions. | Yang Tse | |
2007-10-02 | Fix compiler warning | Yang Tse | |
2007-09-27 | Renamed a few variables to avoid shadowing global declarations. | 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-09-26 | Max Katsev reported that when doing a libcurl FTP request with | Daniel Stenberg | |
CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE before it does SIZE which makes it less useful. I walked over the code and made it do this properly, and added test case 542 to verify it. | |||
2007-09-24 | Immanuel Gregoire fixed KNOWN_BUGS #44: --ftp-method nocwd did not handle | Daniel Stenberg | |
URLs ending with a slash properly (it should list the contents of that directory). Test case 351 brought back and also test 1010 was added. | |||
2007-09-11 | - I noticed while writing test 541 that the FTP code wrongly did a CWD on the | Daniel Stenberg | |
second transfer as it didn't store and remember the "" path from the previous transfer so it would instead CWD to the entry path as stored. This worked, but did a superfluous command. Thus, test case 541 now also verifies this fix. | |||
2007-09-05 | Curl_GetFTPResponse() now checks and properly deals with the fact that the | Daniel Stenberg | |
underlying ftp_readresp() function has a separate "cache" where there might in fact be leftover data... | |||
2007-08-31 | Renamed the CURLE_FTP_SSL_FAILED error code to CURLE_USE_SSL_FAILED. | Dan Fandrich | |
Renamed the curl_ftpssl enum to curl_usessl and its enumerated constants, creating macros for backward compatibility. | |||
2007-08-30 | Renamed several libcurl error codes and options to make them more general | Dan Fandrich | |
and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3) | |||
2007-08-30 | Made Curl_GetFTPResponse() use lots less code and instead use the proper | Daniel Stenberg | |
low-level ftp_readresp() function. Hopefully adressing bug #1779054. | |||
2007-08-27 | Fixed some minor type mismatches and missing consts mainly found by splint. | Dan Fandrich | |
2007-08-24 | Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed | Daniel Stenberg | |
out that libcurl didn't deal with large responses from server commands, when the single response was consisting of multiple lines but of a total size of 16KB or more. Dan Fandrich improved the ftp test script and provided test case 1006 to repeat the problem, and I fixed the code to make sure this new test case runs fine. | |||
2007-08-22 | Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed | Daniel Stenberg | |
out that libcurl didn't deal with very long (>16K) FTP server response lines properly. Starting now, libcurl will chop them off (thus the client app will not get the full line) but survive and deal with them fine otherwise. Test case 1003 was added to verify this. | |||
2007-08-20 | Based on a patch by Christian Vogt, the FTP code now sets the upcoming | Daniel Stenberg | |
download transfer size much earlier to be possible to get read with CURLINFO_CONTENT_LENGTH_DOWNLOAD as soon as possible. | |||
2007-08-17 | - Robson Braga Araujo filed bug report #1776232 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1776232) about libcurl calling Curl_client_write(), passing on a const string that the caller may not modify and yet it does (on some platforms). | |||
2007-08-17 | Robson Braga Araujo filed bug report #1776235 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1776235) about ftp requests with NOBODY on a directory would do a "SIZE (null)" request. This is now fixed and test case 1000 was added to verify. | |||
2007-08-01 | Patrick Monnerat and I modified libcurl so that now it *copies* all strings | Daniel Stenberg | |
passed to it with curl_easy_setopt()! Previously it has always just refered to the data, forcing the user to keep the data around until libcurl is done with it. That is now history and libcurl will instead clone the given strings and keep private copies. | |||
2007-07-29 | Bug report #1759542 (http://curl.haxx.se/bug/view.cgi?id=1759542). A bad use | Daniel Stenberg | |
of a socket after it has been closed, when the FTP-SSL data connection is taken down. | |||
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-21 | Make the pointers of a few static const arrays const, too, for safety. | Dan Fandrich | |
2007-07-20 | Ralf S. Engelschall filed bug report #1757328 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1757328) and submitted a patch. It turns out we broke login to FTP servers that don't require (nor understand) PASS after the USER command | |||
2007-07-20 | Made some const arrays static to avoid unnecessary stack usage. | Dan Fandrich | |
2007-07-17 | Jofell Gallardo posted a libcurl log using FTP that exposed a bug which made | Daniel Stenberg | |
a control connection that was deemed "dead" to yet be re-used in a following request. We must make sure the connection gets closed on this situation. | |||
2007-07-13 | Daniel Cater made libcurl build with CURL_NO_OLDIES defined (which doesn't | Daniel Stenberg | |
define the symbols for backwards source compatibility) | |||
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-07-01 | Song Ma helped me verify and extend a fix for doing FTP over a SOCKS4/5 proxy | Daniel Stenberg | |
2007-06-24 | As reported by "Tro" in http://curl.haxx.se/mail/lib-2007-06/0161.html and | Daniel Stenberg | |
http://curl.haxx.se/mail/lib-2007-06/0238.html, libcurl didn't properly do no-body requests on FTP files on re-used connections properly, or at least it didn't provide the info back in the header callback properly in the subsequent requests. | |||
2007-06-19 | and fix another flaw in the singlecwd case when we get ftp://site.com/, also | Daniel Stenberg | |
from the #1739100 bug report | |||
2007-06-18 | make the ftp-method multicwd case possible to LIST the root directory of a | Daniel Stenberg | |
server! | |||
2007-04-25 | Fixed an out of memory handling issue. | Dan Fandrich | |
2007-04-22 | Avoid an unnecessary call to gettimeofday() when | Yang Tse | |
using custom timeout values. | |||
2007-04-12 | Work around an out of memory situation in Curl_ftp_done instead of | Dan Fandrich | |
returning an error code, to allow connections to be torn down cleanly since this function can be called AFTER an OOM situation has already been reached. | |||
2007-04-11 | Fixed some out of memory handling issues. | Dan Fandrich | |
2007-04-10 | Ravi Pratap provided fixes for HTTP pipelining | Daniel Stenberg | |
2007-03-31 | Removed check for ftpcode being NULL, as later it is derefenced unconditionally | Daniel Stenberg | |
anyway and we can just as well rely on it being valid. CID 12, coverity.com scan | |||
2007-03-30 | Pointer "cur_pos" dereferenced before NULL check, found by coverity.com scan. | Daniel Stenberg | |
Removed the NULL check since the pointer must be valid already. | |||
2007-03-30 | Don't tear down the ftp connection if the maximum filesize was exceeded | Dan Fandrich | |
and added tests 290 and 291 to check. | |||
2007-03-27 | Update message | Yang Tse | |
2007-03-26 | Internal function Curl_select() renamed to Curl_socket_ready() | Yang Tse | |
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-25 | fix compiler warning | 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-20 | New FTP CCC functionality - adds passive and active mode to accomodate for ↵ | Linus Nielsen Feltzing | |
different server behaviour | |||
2007-02-19 | and fix warnings due to lack of protos | Daniel Stenberg | |
2007-02-19 | - Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and | Daniel Stenberg | |
5). |