Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/liboftp.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 18 by hirohitohigashi, Wed Feb 25 14:18:07 2009 UTC revision 26 by hirohitohigashi, Sat Feb 28 02:04:32 2009 UTC
# Line 23  Line 23 
23  typedef struct  typedef struct
24  {  {
25      int socket;      int socket;
26      struct sockaddr_in sockaddr;      struct sockaddr_in saddr;
27      enum { UNIX = 1, Windows_NT = 2 } system_type;      enum { UNIX = 1, Windows_NT = 2 } system_type;
28      enum { ASCII = 1, IMAGE = 3 } data_type;      enum { ASCII = 1, IMAGE = 3 } data_type;
29      int flag_passive;      int flag_passive;
# Line 37  typedef struct Line 37  typedef struct
37    
38  /***** Global variables *****************************************************/  /***** Global variables *****************************************************/
39  /***** Function prototypes **************************************************/  /***** Function prototypes **************************************************/
40  int ftp_connect( LIBOFTP *ftp, const char *host, int port );  int ftp_open( LIBOFTP *ftp, const char *host, int port );
41  int ftp_auth( LIBOFTP *ftp, const char *user, const char *pass );  int ftp_user( LIBOFTP *ftp, const char *user, const char *pass );
42  int ftp_passive( LIBOFTP *ftp, int flag );  int ftp_passive( LIBOFTP *ftp, int flag );
43  int ftp_type( LIBOFTP *ftp, const char *type );  int ftp_type( LIBOFTP *ftp, const char *type );
44  int ftp_quit( LIBOFTP *ftp );  int ftp_quit( LIBOFTP *ftp );
45    int ftp_site( LIBOFTP *ftp, const char *cmdline );
46    int ftp_delete( LIBOFTP *ftp, const char *fname );
47    int ftp_rename( LIBOFTP *ftp, const char *from, const char *to );
48  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 );
49  int ftp_put_buffer( LIBOFTP *ftp, const char *fname, char *buf, int bufsiz );  int ftp_put_buffer( LIBOFTP *ftp, const char *fname, char *buf, int bufsiz );
50  int ftp_append_buffer( LIBOFTP *ftp, const char *fname, char *buf, int bufsiz );  int ftp_append_buffer( LIBOFTP *ftp, const char *fname, char *buf, int bufsiz );
51    int ftp_list( LIBOFTP *ftp, const char *fglob, char *buf, int bufsiz );
52    int ftp_nlist( LIBOFTP *ftp, const char *fglob, char *buf, int bufsiz );
53    int ftp_mkdir( LIBOFTP *ftp, const char *dirname );
54    int ftp_rmdir( LIBOFTP *ftp, const char *dirname );
55    int ftp_pwd( LIBOFTP *ftp, char *buf, int bufsiz );
56    int ftp_cd( LIBOFTP *ftp, const char *dirname );
57    
58    
59    
60  /***** Inline functions *****************************************************/  /***** Inline functions *****************************************************/

Legend:
Removed from v.18  
changed lines
  Added in v.26

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26