diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1995-12-30 19:02:48 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1995-12-30 19:02:48 +0000 |
| commit | a5b996a7ecea192e05c848269fbfb40c1e7c50ef (patch) | |
| tree | b43d0e66d9963acc026a6322b81fd219d273736b /lib/libftp/Ftpfopen.c | |
| parent | df2fbf15a2e56a16c3b54b93a3369b662b6f20e5 (diff) | |
Notes
Diffstat (limited to 'lib/libftp/Ftpfopen.c')
| -rw-r--r-- | lib/libftp/Ftpfopen.c | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/lib/libftp/Ftpfopen.c b/lib/libftp/Ftpfopen.c deleted file mode 100644 index 9b89bb3e7835..000000000000 --- a/lib/libftp/Ftpfopen.c +++ /dev/null @@ -1,98 +0,0 @@ -/* - Library for ftpd clients.(libftp) - Copyright by Oleg Orel - All rights reserved. - -This library is desined for free, non-commercial software creation. -It is changeable and can be improved. The author would greatly appreciate -any advises, new components and patches of the existing programs. -Commercial usage is also possible with participation of it's author. - - - -*/ - -#include <FtpLibrary.h> - -#define NFSD 256 - -static int fds_types[NFDS]; -static int init=0; - -enum {T_EMPTY=0,T_FILE,T_STREAM,T_PIPE,T_FULL}; - -FILE *Ftpfopen(char *filename,char *mode) -{ - FILE *fp; - - if (!init) - { - bzero(fds_types,NFDS*sizeof(fds_types[0])); - init=1; - } - - if (!strcmp(filename,"*STDIN*") || (!strcmp(filename,"-") && (mode[0]=='r')) ) - { - fds_types[fileno(stdin)]=T_STREAM; - return stdin; - } - - if (!strcmp(filename,"*STDOUT*") || (!strcmp(filename,"-") && (mode[0]=='w'))) - { - fds_types[fileno(stdout)]=T_STREAM; - return stdout; - } - - if (strcmp(filename,"*STDERR*")==0) - { - fds_types[fileno(stderr)]=T_STREAM; - return stderr; - } - - - - if (*filename=='|') - { - fp=popen(filename+1,mode); - if (fp==NULL) return fp; - fds_types[fileno(fp)]=T_PIPE; - return fp; - } - - fp=FtpFullOpen(filename,mode); - if (fp==NULL) return fp; - fds_types[fileno(fp)]=T_FILE; - return fp; - -} - -int Ftpfclose(FILE *fp) -{ - - if (!init) - { - bzero(fds_types,NFDS*sizeof(fds_types[0])); - init=1; - } - - switch (fds_types[fileno(fp)]) - { - - case T_FILE: - - return FtpFullClose(fp); - - case T_STREAM: - - return fflush(fp); - - case T_PIPE: - - return pclose(fp); - - default: - - return -1; - } - -} |
