aboutsummaryrefslogtreecommitdiff
path: root/lib/connect.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-10-02 09:40:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-10-02 09:40:06 +0000
commit51ca5fcbe0745cc4e245ffb69b339d1987be3b88 (patch)
tree1d7bc96cf8391dfa174f90ab4ec2c2177ff6d30c /lib/connect.h
parent56ff2aa059361c19c420c5321efe86e50074e0ac (diff)
major connecting updates
Diffstat (limited to 'lib/connect.h')
-rw-r--r--lib/connect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/connect.h b/lib/connect.h
index a0e3f068d..1b7319d1e 100644
--- a/lib/connect.h
+++ b/lib/connect.h
@@ -24,9 +24,9 @@
*****************************************************************************/
CURLcode Curl_connecthost(struct connectdata *conn,
- long timeout, /* milliseconds */
Curl_addrinfo *host, /* connect to this */
long port, /* connect to this port number */
- int sockfd, /* input socket, or -1 if none */
- int *socket); /* not set if error is returned */
+ int *socket, /* not set if error is returned */
+ Curl_ipconnect **addr /* the one we used */
+ ); /* index we used */
#endif