summaryrefslogtreecommitdiffstats
path: root/lib/libftpio/ftpio.h
Commit message (Collapse)AuthorAgeFilesLines
* Modernize my email address.phk2002-03-251-1/+1
|
* IPv6 support.ume2000-07-051-0/+3
| | | | | | This is required for forthcoming IPv6 ready installer. Obtained from: KAME
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Change errno usage as a field in a structure and as an argument to ajb1997-12-201-3/+3
| | | | | function from 'errno' to 'error' so that there is no conflict with the thread-safe definition of errno in errno.h.
* Make this C++ safe.jkh1997-05-051-1/+5
| | | | Submitted by: Nadav Eiron <nadav@barcode.co.il>
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-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.
* For functions ftpGetURL, ftpPutURL, ftpLogin it was impossible to knowache1996-11-141-4/+4
| | | | | | | | | | | | | | | | | | | | 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
* Oops, forget the fact that several ftp connections can be activeache1996-11-141-2/+2
| | | | | | at the same time, so add new con_state to avoid QUIT recursion Still should go to 2.2
* Make libftpio 64-bit clean.peter1996-09-191-3/+4
| | | | | | | Major version bumped (by me) since the ftpGet() public interface has changed (an "int *" becomes and "off_t *") Submitted by: Jason Thorpe <thorpej@nas.nasa.gov>, PR#1640
* Add an ftpErrString() function for returning human readable failurejkh1996-08-211-1/+10
| | | | | codes. Submitted-By: Archie Cobbs <archie@whistle.com>
* 1. Add verbose flag to ftp_login()jkh1996-08-031-2/+2
| | | | | | 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
* Implement an ftpVerbose() hook.jkh1996-07-041-1/+3
| | | | Submitted by: jmz
* Makefile:gpalmer1996-06-261-2/+2
| | | | | | | Add -Wall to CFLAGS ftpio.h: It's ftpGetModTime, not ftpModTime
* Fix a bug in the way binary/ascii settings were being done. Newjkh1996-06-221-4/+5
| | | | ftpAscii() call sets connection to ascii as counterpart to ftpBinary().
* Rethink and reimpliment the way RESTARTS are handled. The method I inheiritedjkh1996-06-171-4/+2
| | | | | | 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.
* Bring in a new library `libftpio', so named to avoid clashes with olderjkh1996-06-171-0/+53
packages and also sort of give the (correct) impression that this basically sits on top of stdio and deals with stream pointers (FILE*).
OpenPOWER on IntegriCloud