summaryrefslogtreecommitdiff
path: root/networking/ftpgetput.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* The brain-dead FTP servers on Solaris don't support the size command.Rob Landley2006-01-101-2/+9
|
* Patch from Tomasz Mateja: don't try to CWD to a _filename_, just send the fullRob Landley2005-11-081-19/+2
| | | | path to the STOR command.
* applying fix from:Paul Fox2005-07-191-2/+2
| | | | | | 0000108: busyboxy/networking/ftpgetput.c not conforming to RFC 959. ftpget and ftpput send <LF> as EOL.
* Fix size command, safe_strtoul gives and error if the \r is left in, theGlenn L McGrath2004-05-041-1/+6
| | | | | RFC spec says the \r should be there. This fix is the same as a recent wget fix
* Update my email address, document some of my tasks in the AUTHORS fileGlenn L McGrath2004-04-251-1/+1
|
* s/fileno\(stdin\)/STDIN_FILENO/gEric Andersen2004-03-271-2/+2
| | | | s/fileno\(stdout\)/STDOUT_FILENO/g
* Oops. Using the wrong variable was a rather stupidEric Andersen2004-03-151-1/+1
| | | | thing for me to do.
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-7/+7
|
* Fix/eliminate use of atolEric Andersen2004-03-061-1/+4
|
* Modify bb_lookup_port to allow the protocol to be specified, allowingGlenn L McGrath2004-01-171-1/+1
| | | | /etc/services support for inetd, netcat and tftp.
* Allow recieving file to stdout, sending files from stdin, use the '-'Glenn L McGrath2003-12-201-35/+37
| | | | filename. Save a variable.
* display the port number number correctly, other minor optimisationsGlenn L McGrath2003-12-201-30/+20
|
* Change interface to bb_lookup_host, dont try and set port inside thisGlenn L McGrath2003-12-201-1/+2
| | | | | | | | function as there is no gracefull way of handling failures. Rename bb_getport to bb_lookup_port, allow a default port to be specified so it always returns a correct value. Modify ftpgetput/rdate/wget to use the new interface. wget/rdate now use etc/services with a falback default value.
* Use getopt_ulflagsGlenn L McGrath2003-12-191-31/+23
|
* As we no longer use function pointers for read in common archiving codeGlenn L McGrath2003-11-211-2/+2
| | | | | | | archive_xread can be replaced with bb_full_read, and archive_copy_file with bb_copyfd* bb_copyfd is split into two functions bb_copyfd_size and bb_copyfd_eof, they share a common backend.
* Fix rdate and ftpget/ftpput so they compile with the new xconnect.Eric Andersen2003-11-031-12/+28
| | | | | I have checked rdate. Someone should also check ftpget/ftpput to be sure they still work.
* use an explicit cast on some types that change size whenEric Andersen2003-06-201-2/+2
| | | | large file support is enabled.
* Major coreutils update.Manuel Novoa III2003-03-191-25/+25
|
* When retrieving a file dont open file until we have to to prevent files of ↵Glenn L McGrath2002-12-181-8/+8
| | | | size 0 being created when retrieval fails, bug found by Jeff Angielski
* Merge copyfd and copy_file_chunkGlenn L McGrath2002-12-131-47/+6
|
* Change ftpput so it uses <remote-path> <local-file> as it shouldGlenn L McGrath2002-12-131-1/+1
|
* Fix possible bug if file length not knownGlenn L McGrath2002-12-131-6/+11
|
* New applets, ftpget and ftpputGlenn L McGrath2002-12-131-0/+405