properly disconnect failed connections
This commit is contained in:
parent
aef3131e92
commit
35089a4289
@ -339,9 +339,12 @@ CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_handles)
|
|||||||
if(connected)
|
if(connected)
|
||||||
easy->result = Curl_protocol_connect(easy->easy_conn, NULL);
|
easy->result = Curl_protocol_connect(easy->easy_conn, NULL);
|
||||||
|
|
||||||
if(CURLE_OK != easy->result)
|
if(CURLE_OK != easy->result) {
|
||||||
/* failure detected */
|
/* failure detected */
|
||||||
|
Curl_disconnect(easy->easy_conn); /* close the connection */
|
||||||
|
easy->easy_conn = NULL; /* no more connection */
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
if(connected) {
|
if(connected) {
|
||||||
/* after the connect has completed, go DO */
|
/* after the connect has completed, go DO */
|
||||||
|
Loading…
Reference in New Issue
Block a user