Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/sub.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 31 - (show annotations) (download) (as text)
Sat Feb 28 13:12:23 2009 UTC (15 years, 1 month ago) by hirohitohigashi
File MIME type: text/x-chdr
File size: 1796 byte(s)
added message when argument error occurred.

1 /*
2 liboftp: this is an FTP library to simplify the work to a Developer
3 who want to work with FTP servers (RFC 959).
4
5 Copyright (c) 2009 hirohito higashi. All rights reserved.
6 This file is distributed under BSD license.
7 */
8
9
10 #ifndef __libOftp_Sub_H_proto_
11 #define __libOftp_Sub_H_proto_
12
13 /***** Feature test switches ************************************************/
14 #if 0
15 #define FTP_DEBUG
16 #endif
17
18
19 /***** System headers *******************************************************/
20 #include <string.h>
21 #include <errno.h>
22 #ifdef FTP_DEBUG
23 #include <stdio.h>
24 #endif
25
26
27 /***** Local headers ********************************************************/
28 /***** Constat values *******************************************************/
29 /***** Macros ***************************************************************/
30 /***** Typedefs *************************************************************/
31 #ifdef FTP_DEBUG
32 #define DEBUGPRINT1(f,a1) printf( "(" __FILE__ ") " f,(a1))
33 #else
34 #define DEBUGPRINT1(f,a1)
35 #endif
36
37 #define copy_strerror() \
38 strncpy( ftp->error_message, strerror(errno), sizeof(ftp->error_message)-1 );
39
40
41
42 /***** Global variables *****************************************************/
43 /***** Function prototypes **************************************************/
44 int sendn( int sd, const char *buf, int len, int flags );
45 int ftp_send_command( LIBOFTP *ftp, const char *cmd );
46 int ftp_receive_response( LIBOFTP *ftp, char *res_buf, int bufsiz );
47 int ftp_getready_active( LIBOFTP *ftp, const char *cmd, const char *fname );
48 int ftp_getready_pasv( LIBOFTP *ftp, const char *cmd, const char *fname );
49
50
51 #if defined( __QNX__ ) && !defined( __QNXNTO__ )
52 int snprintf( char *, int, char *, ... );
53 #endif
54
55
56 /***** Inline functions *****************************************************/
57
58
59 #endif

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