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/url.h | |
parent | 2df4866cfa24920675520a5ccf72340e8e93b757 (diff) |
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/url.h')
-rw-r--r-- | lib/url.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -32,7 +32,9 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...); CURLcode Curl_close(struct SessionHandle *data); /* opposite of curl_open() */ CURLcode Curl_connect(struct SessionHandle *, struct connectdata **); CURLcode Curl_do(struct connectdata **); +CURLcode Curl_do_more(struct connectdata *); CURLcode Curl_done(struct connectdata *); CURLcode Curl_disconnect(struct connectdata *); - +CURLcode Curl_protocol_connect(struct connectdata *conn, + Curl_addrinfo *hostaddr); #endif |