summaryrefslogtreecommitdiffstats
path: root/usr.bin/ftp/cookie.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert suni'ls ftp rewrite for now.florian2019-05-161-0/+231
| | | | | We are juggling too many things at the moment and we can't deal with the differences in behaviour right now.
* Move us from old ftp(1) to Sunil's new ftp(1). The necessary modificationskmos2019-05-121-231/+0
| | | | | | have been made to make it behave. Any new misbehaviors can be fixed in tree. OK florian@ deraadt@ "Have you committed ftp yet?"
* Nuke whitespace foolish enough to expose itself during the greatkrw2017-01-211-3/+3
| | | | "warning:" rectification.
* Split -DSMALL into -DNOSSL, so that a SSL-enabled version of ftp canderaadt2016-12-281-2/+2
| | | | | be built, which is still pretty small (in distrib/special/ftp-ssl). Lots of testing by rpe.
* make it clean removing the ifdef SMALL maze. separate cmds andmartynas2009-05-051-1/+4
| | | | | | small stuff. make it a fetcher. shrinks quite a bit agreed by millert@, krw@ ok theo, sthen@
* time_t is signed, so use INT_MAX rather than UINT_MAX when parsing a time_tcloder2008-12-071-2/+2
| | | | with strtonum
* in resume mode, pass -c to mget when {dir,file}hasglob, so that i'mmartynas2008-06-251-2/+2
| | | | | | able to continue multiple transfers with -C; ok millert@ while here fix some comments (!SMALL vs. SMALL stuff), and add missing
* Simplify the code that strips out \r by using strcspn.pyr2007-10-081-5/+2
| | | | ok millert@
* Enable cookie support. This allows parsing of netscape-like cookie jarspyr2007-06-131-0/+231
and sending of appropriate cookies. No retrieval of new cookies is done. Careful review and lots of input by millert and ray. ok millert@, ray@