summaryrefslogtreecommitdiff
path: root/lib/ftp.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-12 09:43:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-12 09:43:20 +0000
commitcb895ec3356822df72eb91171a1cc63ad1845d93 (patch)
tree77a33f251fb9ac6a963d2a31cf722aa37867adb7 /lib/ftp.h
parent2df4866cfa24920675520a5ccf72340e8e93b757 (diff)
downloadcurl-cb895ec3356822df72eb91171a1cc63ad1845d93.tar.gz
Initial fix to make the multi interface return control while waiting for
the initial connect to "come through". This should work fine for connect and for FTP-PASV connects. Needs massive testing.
Diffstat (limited to 'lib/ftp.h')
-rw-r--r--lib/ftp.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/ftp.h b/lib/ftp.h
index baf9f40e6..0ed2d9abe 100644
--- a/lib/ftp.h
+++ b/lib/ftp.h
@@ -1,6 +1,5 @@
#ifndef __FTP_H
#define __FTP_H
-
/*****************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
@@ -24,22 +23,15 @@
* $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);
CURLcode Curl_ftp_disconnect(struct connectdata *conn);
-
CURLcode Curl_ftpsendf(struct connectdata *, const char *fmt, ...);
-
-/* The kerberos stuff needs this: */
int Curl_GetFTPResponse(char *buf, struct connectdata *conn,
int *ftpcode);
-
-/* MN 06/07/02 */
+CURLcode Curl_ftp_nextconnect(struct connectdata *conn);
#endif
-
#endif