From 4b351d018e3d6691191fd653a17f14f4a31e0b4c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 23 Mar 2010 23:29:23 +0100 Subject: mark connection as connected Kenny To filed the bug report #2963679 with patch to fix a problem he experienced with doing multi interface HTTP POST over a proxy using PROXYTUNNEL. He found a case where it would connect fine but bits.tcpconnect was not set correct so libcurl didn't work properly. (http://curl.haxx.se/bug/view.cgi?id=2963679) --- lib/connect.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/connect.c b/lib/connect.c index 5e94b8673..c0f2012a8 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -574,6 +574,7 @@ CURLcode Curl_is_connected(struct connectdata *conn, int error; if(verifyconnect(sockfd, &error)) { /* we are connected, awesome! */ + conn->bits.tcpconnect = TRUE; *connected = TRUE; return CURLE_OK; } -- cgit v1.2.3