aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
AgeCommit message (Collapse)Author
2001-08-30a few more struct fixesDaniel Stenberg
2001-08-30Major rename and redesign of the internal "backbone" structs. Details willDaniel Stenberg
be posted in a minute to the libcurl list.
2001-08-23I want Sterling to be my friend, so I wasted some time on splitting up theDaniel Stenberg
huge monster function _ftp() into more little functions. There are still more that can be done, but this is at least improving readability and maintainability... :-)
2001-08-18<couldn't resist>Sterling Hughes
Use a more appropriate variable name </couldn't resist>
2001-08-17modified to use the renamed kerberos functions with Curl_ prefixDaniel Stenberg
2001-08-15const fixesDaniel Stenberg
2001-08-15removed one compiler error and two "unused variable" warningsDaniel Stenberg
2001-08-15more _ftp_cwdSterling Hughes
2001-08-15ftp_cwd() abstractionSterling Hughes
"%" -> "%s"
2001-08-15This can be used in another place (Curl_ftp_done :)...Sterling Hughes
declare at the top of the file, put the private functions at the bottom of the file, however, this is clearer imho (since _ftp is already there).
2001-08-15must merge before commitSterling Hughes
must merge before commit must merge before commit
2001-08-15begin abstraction process...Sterling Hughes
2001-08-14exchanged the second and third argument to fwrite(), as that makes it lookDaniel Stenberg
good on VMS. Removed a '#if 0' section, made Curl_getmyhost static and cut off the 'Curl_' prefix
2001-08-14corrected the size_t weirdness. Expect size_t to be unsigned. Moved mostDaniel Stenberg
over to ssize_t that is signed. Removed all the special-purpose VMS #ifdefs that were added for this.
2001-08-06Nico's fixes for VMS, most of these are fixes for bad uses of size_t thatDaniel Stenberg
forgets that it is very often unsigned. These should be fixed globally and then many #ifdef VMS lines can be removed.
2001-06-19better treatment of truly aborted transfersDaniel Stenberg
2001-05-14Jun-ichiro itojun Hagino fixed FTP PORT for IPv6-enabled libcurlDaniel Stenberg
2001-05-12Uses the Curl_SSLConnect() according to the new return typeDaniel Stenberg
2001-05-11when asking for a resumed FTP transfer, even though the entire file hasDaniel Stenberg
already been transfered no longer returns error but instead is OK. The reasoning behind this is of course that no extra actions need to be taken and it is as if a transfer had been successfully performed.
2001-05-08when getting a FTP file with NOBODY, we will no longer return error ifDaniel Stenberg
SIZE doesn't work, we just don't output any size info!
2001-04-26Curl_GetFTPResponse() is rewritten to read all incoming data in largeDaniel Stenberg
chunks, which makes it a lot faster and will make ftps work better...
2001-04-18Remade resume stuff to keep data in the connectdata struct instead of theDaniel Stenberg
main handle struct to work with persistant connections
2001-04-17Frederic Lepied's ftp download resume fixDaniel Stenberg
2001-04-03better error checks for failure conditions (based on Puneet Pawaia's reports)Daniel Stenberg
2001-03-29ftps:// support addedDaniel Stenberg
2001-03-14removed a bunch of warnings for IPv6-compilesDaniel Stenberg
2001-03-09accept() and getsockname() now use socklen_t types, as that was just addedDaniel Stenberg
to configure
2001-03-05enable persistant connections by defaultDaniel Stenberg
2001-03-02remade the port number stuff so that following locations work and doingDaniel Stenberg
intermixed HTTP and FTP persistant connections also work!
2001-03-02removed the slist -functions from hereDaniel Stenberg
added the Curl_ftp_disconnect function for FTP-specific disconnects
2001-02-22moved the dynamicly set pointers to the connectdata structDaniel Stenberg
2001-02-21IPv6-adjustmentsDaniel Stenberg
2001-02-20multiple connection support initial commitDaniel Stenberg
2001-02-13better english timeouted => timed out, as suggested by Larry FahnoeDaniel Stenberg
2001-02-13moved the protocol-specific free to allow easier multiple transfersDaniel Stenberg
2001-02-09Added a failf() call in the error-check just addedDaniel Stenberg
2001-02-08today's FTP response check fixDaniel Stenberg
2001-02-077.6.1-pre3Daniel Stenberg
2001-02-05adjusted the IPv6 stuff to compile and build on Linux as wellDaniel Stenberg
2001-02-05Jun-ichiro itojun Hagino's IPv6 adjustmentsDaniel Stenberg
2001-01-31curl_read() and Curl_read() now have ssize_t in the last argumentDaniel Stenberg
2001-01-25Get get-ftp-response function is now using Curl_read() for reading from aDaniel Stenberg
socket. Curl_ConnectHTTPProxyTunnel changed prototype.
2001-01-17Transfer is now Curl_Tranfer() and transfer.h is used instead of highlevel.hDaniel Stenberg
and download.h
2001-01-08Added mprintf #includeDaniel Stenberg
2001-01-08Loic Dachary's makefile/dist/rpm fixesDaniel Stenberg
2001-01-05Internal symbols that aren't static are now prefixed with 'Curl_'Daniel Stenberg
2001-01-03dual-license fixDaniel Stenberg
2000-12-19fixed a leaked file descriptor when PORT failedDaniel Stenberg
2000-12-18fixed accept() for memory debuggingDaniel Stenberg
2000-12-16changed the return code checker in the quote command send to only failDaniel Stenberg
on >= 400 errors