fixed the connecthost proto: added the timeout argument
authorDaniel Stenberg <daniel@haxx.se>
Mon, 1 Oct 2001 11:26:21 +0000 (11:26 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 1 Oct 2001 11:26:21 +0000 (11:26 +0000)
lib/connect.h

index 10fd463..40df23c 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __NONBLOCK_H
-#define __NONBLOCK_H
+#ifndef __CONNECT_H
+#define __CONNECT_H
 /*****************************************************************************
  *                                  _   _ ____  _     
  *  Project                     ___| | | |  _ \| |    
@@ -24,6 +24,7 @@
  *****************************************************************************/
 
 CURLcode Curl_connecthost(struct connectdata *conn,
-                          int sockfd, /* input socket, or -1 if none */
-                          int *socket);
+                          long timeout, /* milliseconds */
+                          int sockfd,   /* input socket, or -1 if none */
+                          int *socket); /* not set if error is returned */
 #endif