diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-08-12 09:43:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-12 09:43:20 +0000 |
commit | cb895ec3356822df72eb91171a1cc63ad1845d93 (patch) | |
tree | 77a33f251fb9ac6a963d2a31cf722aa37867adb7 /lib/ftp.h | |
parent | 2df4866cfa24920675520a5ccf72340e8e93b757 (diff) | |
download | curl-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.h | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -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 |