diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-05 14:40:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-05 14:40:59 +0000 |
commit | b73612392d7afbf9835a119446e2a58e72384b00 (patch) | |
tree | ec582f5818cdc30837afe560830b895618a6694d /lib/url.h | |
parent | f85935f0f964f1475e522914c3f665508349e5ed (diff) |
ares awareness/usage/support added. If configure --enable-ares is used, we
build libcurl to use ares for asynch name resolves.
Diffstat (limited to 'lib/url.h')
-rw-r--r-- | lib/url.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,7 +30,9 @@ CURLcode Curl_open(struct SessionHandle **curl); 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_connect(struct SessionHandle *, struct connectdata **, + bool *async); +CURLcode Curl_async_resolved(struct connectdata *conn); CURLcode Curl_do(struct connectdata **); CURLcode Curl_do_more(struct connectdata *); CURLcode Curl_done(struct connectdata *); |