aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-01-25 23:41:02 +0000
committerYang Tse <yangsita@gmail.com>2010-01-25 23:41:02 +0000
commit340ab2f87f22a22a9a7c92391e1a1a62c61b5bb2 (patch)
tree7eed46ee6e98c1f287b62f4fbc7d3330191a8092 /lib/ftp.h
parentf8b16e5ccb28065a0756937b2c79769d21b80c5f (diff)
make Curl_handler_*_proxy definition static
Diffstat (limited to 'lib/ftp.h')
-rw-r--r--lib/ftp.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/lib/ftp.h b/lib/ftp.h
index 1ff2d92f4..afc5f69c5 100644
--- a/lib/ftp.h
+++ b/lib/ftp.h
@@ -1,5 +1,5 @@
-#ifndef __FTP_H
-#define __FTP_H
+#ifndef HEADER_CURL_FTP_H
+#define HEADER_CURL_FTP_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
@@ -32,14 +32,6 @@ extern const struct Curl_handler Curl_handler_ftp;
extern const struct Curl_handler Curl_handler_ftps;
#endif
-#ifndef CURL_DISABLE_HTTP
-extern const struct Curl_handler Curl_handler_ftp_proxy;
-
-# ifdef USE_SSL
-extern const struct Curl_handler Curl_handler_ftps_proxy;
-# endif
-#endif
-
CURLcode Curl_ftpsendf(struct connectdata *, const char *fmt, ...);
CURLcode Curl_GetFTPResponse(ssize_t *nread, struct connectdata *conn,
int *ftpcode);
@@ -146,4 +138,4 @@ struct ftp_conn {
char * server_os; /* The target server operating system. */
};
-#endif /* __FTP_H */
+#endif /* HEADER_CURL_FTP_H */