From 308ae5cbf29921e27eed764416d1ae5379d3e47f Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Wed, 10 Apr 2002 14:20:24 +0000
Subject: [PATCH] added info in to failf() lines and added a infof() call just
 before the connect() so that it tells to which host and what port it is about
 to attempt the connection

---
 lib/connect.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lib/connect.c b/lib/connect.c
index 66035dc3f..ee52b6764 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -385,6 +385,9 @@ CURLcode Curl_connecthost(struct connectdata *conn,  /* context */
     }
   }
 
+  infof(data, "About to connect() to %s:%d\n",
+        data->change.proxy?conn->proxyhost:conn->hostname, port);
+
 #ifdef ENABLE_IPV6
   /*
    * Connecting with IPv6 support is so much easier and cleanly done
@@ -424,7 +427,7 @@ CURLcode Curl_connecthost(struct connectdata *conn,  /* context */
         case ECONNREFUSED: /* no one listening */
         default:
           /* unknown error, fallthrough and try another address! */
-          failf(data, "Failed to connect");
+          failf(data, "Failed to connect: %d", error);
           break;
         }
       }
@@ -529,7 +532,8 @@ CURLcode Curl_connecthost(struct connectdata *conn,  /* context */
         break;
       default:
         /* unknown error, fallthrough and try another address! */
-        failf(data, "Failed to connect to IP number %d", aliasindex+1);
+        failf(data, "Failed to connect to IP number %d: %d",
+              aliasindex+1, error);
         break;
       }
     }
-- 
2.40.0