| 57 |
int ftp_timeout( LIBOFTP *ftp, int sec ); |
int ftp_timeout( LIBOFTP *ftp, int sec ); |
| 58 |
int ftp_type( LIBOFTP *ftp, const char *type ); |
int ftp_type( LIBOFTP *ftp, const char *type ); |
| 59 |
int ftp_quit( LIBOFTP *ftp ); |
int ftp_quit( LIBOFTP *ftp ); |
| 60 |
|
int ftp_reset( LIBOFTP *ftp ); |
| 61 |
int ftp_site( LIBOFTP *ftp, const char *cmdline ); |
int ftp_site( LIBOFTP *ftp, const char *cmdline ); |
| 62 |
int ftp_delete( LIBOFTP *ftp, const char *fname ); |
int ftp_delete( LIBOFTP *ftp, const char *fname ); |
| 63 |
int ftp_rename( LIBOFTP *ftp, const char *from, const char *to ); |
int ftp_rename( LIBOFTP *ftp, const char *from, const char *to ); |
| 64 |
|
|
| 65 |
int ftp_get_buffer( LIBOFTP *ftp, const char *fname, char *buf, int bufsiz ); |
int ftp_get_buffer( LIBOFTP *ftp, const char *fname, char *buf, int bufsiz ); |
| 66 |
int ftp_put_buffer( LIBOFTP *ftp, char *buf, int bufsiz, const char *fname ); |
int ftp_put_buffer( LIBOFTP *ftp, const char *buf, int bufsiz, const char *fname ); |
| 67 |
int ftp_append_buffer( LIBOFTP *ftp, char *buf, int bufsiz, const char *fname ); |
int ftp_append_buffer( LIBOFTP *ftp, const char *buf, int bufsiz, const char *fname ); |
| 68 |
int ftp_get_file( LIBOFTP *ftp, const char *fname, const char *local_fname ); |
int ftp_get_file( LIBOFTP *ftp, const char *fname, const char *local_fname ); |
| 69 |
int ftp_put_file( LIBOFTP *ftp, const char *local_fname, const char *fname ); |
int ftp_put_file( LIBOFTP *ftp, const char *local_fname, const char *fname ); |
| 70 |
int ftp_append_file( LIBOFTP *ftp, const char *local_fname, const char *fname ); |
int ftp_append_file( LIBOFTP *ftp, const char *local_fname, const char *fname ); |