diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-11 11:13:01 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-11 11:13:01 +0000 |
commit | 08ef208fb78fb2eabc5cec08c23e74e251eac898 (patch) | |
tree | c52fa36be6197717f9ab12031a623091d785b51c /lib/ftp.h | |
parent | 8c45e2a6415a3a12231b88cd2791141ec809d163 (diff) | |
download | curl-08ef208fb78fb2eabc5cec08c23e74e251eac898.tar.gz |
added disable-[protocol] support, largely provided by Miklos Nemeth
Diffstat (limited to 'lib/ftp.h')
-rw-r--r-- | lib/ftp.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -23,6 +23,10 @@ * * $Id$ *****************************************************************************/ + +/* MN 06/07/02 */ +#ifndef CURL_DISABLE_FTP + CURLcode Curl_ftp(struct connectdata *conn); CURLcode Curl_ftp_done(struct connectdata *conn); CURLcode Curl_ftp_connect(struct connectdata *conn); @@ -34,4 +38,8 @@ CURLcode Curl_ftpsendf(struct connectdata *, const char *fmt, ...); int Curl_GetFTPResponse(char *buf, struct connectdata *conn, int *ftpcode); +/* MN 06/07/02 */ +#endif + + #endif |