aboutsummaryrefslogtreecommitdiff
path: root/lib/url.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-03-30 00:17:02 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-03-30 07:52:28 +0200
commit575e885db0f3b2c50434f63269438fe21cbbb978 (patch)
tree48bd63f9b3ccd9220f0de284de6fd678311f2134 /lib/url.h
parent93935c08c1b85482bc86bd6adcc33c1d924eed5e (diff)
multi: turn Curl_done into file local multi_done
... as it now is used by multi.c only.
Diffstat (limited to 'lib/url.h')
-rw-r--r--lib/url.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/url.h b/lib/url.h
index d19ef21ba..554680f8e 100644
--- a/lib/url.h
+++ b/lib/url.h
@@ -37,7 +37,6 @@ void Curl_freeset(struct SessionHandle * data);
CURLcode Curl_close(struct SessionHandle *data); /* opposite of curl_open() */
CURLcode Curl_connect(struct SessionHandle *, struct connectdata **,
bool *async, bool *protocol_connect);
-CURLcode Curl_done(struct connectdata **, CURLcode, bool premature);
CURLcode Curl_disconnect(struct connectdata *, bool dead_connection);
CURLcode Curl_protocol_connect(struct connectdata *conn, bool *done);
CURLcode Curl_protocol_connecting(struct connectdata *conn, bool *done);
@@ -58,6 +57,8 @@ CURLcode Curl_addHandleToPipeline(struct SessionHandle *handle,
struct curl_llist *pipeline);
int Curl_removeHandleFromPipeline(struct SessionHandle *handle,
struct curl_llist *pipeline);
+struct connectdata *
+Curl_oldest_idle_connection(struct SessionHandle *data);
/* remove the specified connection from all (possible) pipelines and related
queues */
void Curl_getoff_all_pipelines(struct SessionHandle *data,