summaryrefslogtreecommitdiff
path: root/lib/libftpio/ftpio.3
Commit message (Collapse)AuthorAgeFilesLines
* Now that its only consumer is gone (sysinstall), remove libftpio as well.Nathan Whitehorn2011-10-031-260/+0
| | | | Notes: svn path=/head/; revision=225952
* mdoc: consistently spell our email addresses <foo@FreeBSD.org>Ulrich Spörlein2010-05-191-1/+1
| | | | | | | Reviewed by: ru Notes: svn path=/head/; revision=208291
* Expand contractions.Ruslan Ermilov2005-02-131-3/+3
| | | | Notes: svn path=/head/; revision=141851
* Sort sections.Ruslan Ermilov2005-01-201-4/+4
| | | | Notes: svn path=/head/; revision=140505
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-9/+18
| | | | Notes: svn path=/head/; revision=131504
* The .Fn functionPhilippe Charnier2003-06-081-16/+34
| | | | Notes: svn path=/head/; revision=116028
* english(4) police.Jens Schweikhardt2002-12-271-2/+2
| | | | Notes: svn path=/head/; revision=108317
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-011-1/+1
| | | | Notes: svn path=/head/; revision=84306
* Remove whitespace at EOL.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79754
* mdoc(7) police: normalize .Nd.Ruslan Ermilov2001-04-181-1/+1
| | | | Notes: svn path=/head/; revision=75670
* Fixed wrong return type for ftpLoginAf() in synopsis.Bruce Evans2001-02-051-1/+1
| | | | Notes: svn path=/head/; revision=72063
* mdoc(7) police: split punctuation characters + misc fixes.Ruslan Ermilov2001-02-011-11/+11
| | | | Notes: svn path=/head/; revision=71895
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-291-2/+1
| | | | Notes: svn path=/head/; revision=70481
* Fix two bugs:Archie Cobbs2000-08-171-2/+4
| | | | | | | - The ftpPassive() Notes: svn path=/head/; revision=64799
* IPv6 support.Hajimu UMEMOTO2000-07-051-1/+20
| | | | | | | | | This is required for forthcoming IPv6 ready installer. Obtained from: KAME Notes: svn path=/head/; revision=62649
* Remove single-space hard sentence breaks. These degrade the qualitySheldon Hearn2000-03-021-1/+2
| | | | | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc. Notes: svn path=/head/; revision=57686
* Correct spelling : ascii -> ASCIIAlexey Zelkin1999-09-201-1/+1
| | | | | | | | | PR: docs/13702 Submitted by: Stephen J. Roznowski <sjr@home.com> Reviewed by: mpp Notes: svn path=/head/; revision=51457
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Various man page cleanup:Mike Pritchard1999-08-151-2/+2
| | | | | | | | | | | | | - Sort xrefs - FreeBSD.ORG -> FreeBSD.org - Be consistent with section names as outlines in mdoc(7) - Other misc mdoc cleanup. PR: doc/13144 Submitted by: Alexy M. Zelkin <phantom@cris.net> Notes: svn path=/head/; revision=49828
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.AqPhilippe Charnier1998-03-191-2/+5
| | | | Notes: svn path=/head/; revision=34669
* environment variables missing from ftpio(3) man pageJordan K. Hubbard1998-02-101-1/+12
| | | | | | | | PR: 5691 Submitted by: archie@whistle.com Notes: svn path=/head/; revision=33212
* Fixed #include and/or prototype bugs in synopsis.Bruce Evans1997-04-191-3/+3
| | | | Notes: svn path=/head/; revision=25028
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22993
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* For functions ftpGetURL, ftpPutURL, ftpLogin it was impossible to knowAndrey A. Chernov1996-11-141-6/+6
| | | | | | | | | | | | | | | | | | | | | | | FTP error return code because 1) They return NULL, it means that ftpErrno can't be used because it takes file pointer 2) They don't have FILE-type argument as f.e. ftpGet/ftpPut to use it for ftpErrno instead. For that functions I add yet one int* type argument to store FTP error return code. It is impossible to add some global variable for that reason, because user can have multiply FTP connections opened at the same time. So, interface changed, major number bumped. Userland changes will follows. Minor bugfixes, the code: Forget to close file in few places, when failure occurse Forget to NULL cached host name, multiply free is possible Notes: svn path=/head/; revision=19731
* delete doubled words, e.g.: "the the" -> "the"Wolfram Schneider1996-10-051-1/+2
| | | | Notes: svn path=/head/; revision=18718
* Implement a change suggested by Archie Cobbs - the seekto argument shouldJordan K. Hubbard1996-08-211-1/+1
| | | | | | | | be zero'd only if the operation *fails*, indicating that the file starting offset is effectively zero. This makes more sense. Notes: svn path=/head/; revision=17733
* Add an ftpErrString() function for returning human readable failureJordan K. Hubbard1996-08-211-3/+6
| | | | | | | | codes. Submitted-By: Archie Cobbs <archie@whistle.com> Notes: svn path=/head/; revision=17732
* 1. Add verbose flag to ftp_login()Jordan K. Hubbard1996-08-031-5/+6
| | | | | | | | | 2. Remove pkg_* support - tcl7.5's channel interface has rendered this almost entirely unsupportable (at least in the way it currently stands). Submitted-By: jmz & jkh Notes: svn path=/head/; revision=17405
* Implement an ftpVerbose() hook.Jordan K. Hubbard1996-07-041-0/+9
| | | | | | | Submitted by: jmz Notes: svn path=/head/; revision=16955
* Adjust docs to match reality.Jordan K. Hubbard1996-06-241-4/+8
| | | | Notes: svn path=/head/; revision=16659
* Make certain small things more consistent with the other stdio man pages.Jordan K. Hubbard1996-06-201-10/+10
| | | | Notes: svn path=/head/; revision=16543
* Stamp out a potential memory leak.Jordan K. Hubbard1996-06-171-1/+1
| | | | | | | Make ftpChdir return the server status again - it was more convenient. Notes: svn path=/head/; revision=16459
* Rethink and reimpliment the way RESTARTS are handled. The method I inheiritedJordan K. Hubbard1996-06-171-25/+18
| | | | | | | | | from jmz was a hopeless kludge (sorry Jean-Marc :) and handled the problem in the wrong way. ftpRestart() has now gone away and ftpGet() has grown a new parameter. Notes: svn path=/head/; revision=16435
* Whoops, give the authors all proper credit.Jordan K. Hubbard1996-06-171-0/+2
| | | | Notes: svn path=/head/; revision=16424
* Bring in a new library `libftpio', so named to avoid clashes with olderJordan K. Hubbard1996-06-171-0/+185
packages and also sort of give the (correct) impression that this basically sits on top of stdio and deals with stream pointers (FILE*). Notes: svn path=/cvs2svn/branches/FREEBSD/; revision=16420