diff options
-rw-r--r-- | lib/connect.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/connect.c b/lib/connect.c index 77196250d..bb2275e4d 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -976,6 +976,14 @@ CURLcode Curl_is_connected(struct connectdata *conn, failf(data, "Failed to connect to %s port %ld: %s", hostname, conn->port, Curl_strerror(error, buffer, sizeof(buffer))); + +#ifdef WSAETIMEDOUT + if(WSAETIMEDOUT == data->state.os_errno) + result = CURLE_OPERATION_TIMEDOUT; +#elif defined(ETIMEDOUT) + if(ETIMEDOUT == data->state.os_errno) + result = CURLE_OPERATION_TIMEDOUT; +#endif } return result; |