aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-10-01 11:25:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-10-01 11:25:27 +0000
commitede5b54edce67f9848a0190dce3dd47e17c335a6 (patch)
tree8348b99c78cabff3a00a0146d0a2777bd462cc74 /lib
parentc5fdeef41d50d5207c52507e17eadc1ba1e4c5f0 (diff)
corrected the #include files
Diffstat (limited to 'lib')
-rw-r--r--lib/connect.c33
1 files changed, 28 insertions, 5 deletions
diff --git a/lib/connect.c b/lib/connect.c
index 4bff6d699..e4fd94815 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -24,15 +24,25 @@
#include "setup.h"
#ifndef WIN32
+/* headers for non-win32 */
#include <sys/time.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/ioctl.h>
+#ifdef HAVE_UNISTD_H
#include <unistd.h>
+#endif
+#ifdef HAVE_NETDB_H
#include <netdb.h>
-#include <sys/fcntl.h>
+#endif
+#ifdef HAVE_FCNTL_H
+#include <fcntl.h>
+#endif
+#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
+
+#endif
#include <stdio.h>
#include <errno.h>
@@ -65,7 +75,7 @@
*/
static
int nonblock(int socket, /* operate on this */
- int nonblock /* TRUE or FALSE */)
+ int nonblock /* TRUE or FALSE */)
{
#undef SETBLOCK
#ifdef HAVE_O_NONBLOCK
@@ -149,12 +159,16 @@ int waitconnect(int sockfd, /* socket */
*/
CURLcode Curl_connecthost(struct connectdata *conn,
+ long timeout_ms,
int sockfd, /* input socket, or -1 if none */
int *socket)
{
struct SessionHandle *data = conn->data;
int rc;
+ struct timeval after;
+ struct timeval before = Curl_tvnow();
+
#ifdef ENABLE_IPV6
/*
* Connecting with IPv6 support is so much easier and cleanly done
@@ -178,11 +192,16 @@ CURLcode Curl_connecthost(struct connectdata *conn,
break;
/* asynchronous connect, wait for connect or timeout */
- rc = waitconnect(sockfd, timeout);
+ rc = waitconnect(sockfd, timeout_ms);
if(0 != rc) {
/* connect failed or timed out */
sclose(sockfd);
sockfd = -1;
+
+ /* get a new timeout for next attempt */
+ after = Curl_tvnow();
+ timeout_ms -= (long)(Curl_tvdiff(after, before)*1000);
+ before = after;
continue;
}
@@ -200,7 +219,6 @@ CURLcode Curl_connecthost(struct connectdata *conn,
* Connecting with IPv4-only support
*/
int aliasindex;
- int timeout_ms = 10000; /* while testing */
/* non-block socket */
nonblock(sockfd, TRUE);
@@ -250,8 +268,13 @@ CURLcode Curl_connecthost(struct connectdata *conn,
}
}
- if(0 != rc)
+ if(0 != rc) {
+ /* get a new timeout for next attempt */
+ after = Curl_tvnow();
+ timeout_ms -= (long)(Curl_tvdiff(after, before)*1000);
+ before = after;
continue; /* try next address */
+ }
else
break;
}