| 1 |
appaji-guest |
2 |
/********************************************************************\
|
| 2 |
|
|
* Axel -- A lighter download accelerator for Linux and other Unices. *
|
| 3 |
|
|
* *
|
| 4 |
|
|
* Copyright 2001 Wilmer van der Gaast *
|
| 5 |
|
|
\********************************************************************/
|
| 6 |
|
|
|
| 7 |
|
|
/* FTP control include file */
|
| 8 |
|
|
|
| 9 |
|
|
/*
|
| 10 |
|
|
This program is free software; you can redistribute it and/or modify
|
| 11 |
|
|
it under the terms of the GNU General Public License as published by
|
| 12 |
|
|
the Free Software Foundation; either version 2 of the License, or
|
| 13 |
|
|
(at your option) any later version.
|
| 14 |
|
|
|
| 15 |
|
|
This program is distributed in the hope that it will be useful,
|
| 16 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 17 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 18 |
|
|
GNU General Public License for more details.
|
| 19 |
|
|
|
| 20 |
|
|
You should have received a copy of the GNU General Public License with
|
| 21 |
|
|
the Debian GNU/Linux distribution in file /usr/doc/copyright/GPL;
|
| 22 |
|
|
if not, write to the Free Software Foundation, Inc., 59 Temple Place,
|
| 23 |
|
|
Suite 330, Boston, MA 02111-1307 USA
|
| 24 |
|
|
*/
|
| 25 |
|
|
|
| 26 |
|
|
#define FTP_PASSIVE 1
|
| 27 |
|
|
#define FTP_PORT 2
|
| 28 |
|
|
|
| 29 |
|
|
typedef struct
|
| 30 |
|
|
{
|
| 31 |
|
|
char cwd[MAX_STRING];
|
| 32 |
|
|
char *message;
|
| 33 |
|
|
int status;
|
| 34 |
|
|
int fd;
|
| 35 |
|
|
int data_fd;
|
| 36 |
|
|
int ftp_mode;
|
| 37 |
|
|
char *local_if;
|
| 38 |
|
|
} ftp_t;
|
| 39 |
|
|
|
| 40 |
|
|
int ftp_connect( ftp_t *conn, char *host, int port, char *user, char *pass );
|
| 41 |
|
|
void ftp_disconnect( ftp_t *conn );
|
| 42 |
|
|
int ftp_wait( ftp_t *conn );
|
| 43 |
|
|
int ftp_command( ftp_t *conn, char *format, ... );
|
| 44 |
|
|
int ftp_cwd( ftp_t *conn, char *cwd );
|
| 45 |
|
|
int ftp_data( ftp_t *conn );
|
| 46 |
appaji |
72 |
long long int ftp_size( ftp_t *conn, char *file, int maxredir );
|