1996-06-17 12:26:06 +00:00
|
|
|
#ifndef _FTP_H_INCLUDE
|
|
|
|
#define _FTP_H_INCLUDE
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
|
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Major Changelog:
|
|
|
|
*
|
|
|
|
* Jordan K. Hubbard
|
|
|
|
* 17 Jan 1996
|
|
|
|
*
|
|
|
|
* Turned inside out. Now returns xfers as new file ids, not as a special
|
|
|
|
* `state' of FTP_t
|
|
|
|
*
|
1996-06-22 21:43:56 +00:00
|
|
|
* $Id: ftpio.h,v 1.2 1996/06/17 15:28:08 jkh Exp $
|
1996-06-17 12:26:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Internal housekeeping data structure for FTP sessions */
|
|
|
|
typedef struct {
|
|
|
|
enum { init, isopen } con_state;
|
|
|
|
int fd_ctrl;
|
|
|
|
int addrtype;
|
|
|
|
char *host;
|
|
|
|
char *file;
|
|
|
|
int errno;
|
1996-06-22 21:43:56 +00:00
|
|
|
int is_binary;
|
|
|
|
int is_passive;
|
1996-06-17 12:26:06 +00:00
|
|
|
} *FTP_t;
|
|
|
|
|
|
|
|
/* Exported routines - deal only with FILE* type */
|
|
|
|
extern FILE *ftpLogin(char *host, char *user, char *passwd, int port);
|
|
|
|
extern int ftpChdir(FILE *fp, char *dir);
|
|
|
|
extern int ftpErrno(FILE *fp);
|
|
|
|
extern size_t ftpGetSize(FILE *fp, char *file);
|
1996-06-17 15:28:08 +00:00
|
|
|
extern FILE *ftpGet(FILE *fp, char *file, int *seekto);
|
1996-06-17 12:26:06 +00:00
|
|
|
extern FILE *ftpPut(FILE *fp, char *file);
|
1996-06-22 21:43:56 +00:00
|
|
|
extern int ftpAscii(FILE *fp);
|
|
|
|
extern int ftpBinary(FILE *fp);
|
1996-06-17 12:26:06 +00:00
|
|
|
extern int ftpPassive(FILE *fp, int status);
|
|
|
|
extern FILE *ftpGetURL(char *url, char *user, char *passwd);
|
|
|
|
extern FILE *ftpPutURL(char *url, char *user, char *passwd);
|
|
|
|
extern time_t ftpModtime(FILE *fp, char *s);
|
|
|
|
|
|
|
|
#endif /* _FTP_H_INCLUDE */
|