mirror of
https://github.com/curl/curl.git
synced 2026-04-24 04:52:11 +03:00
- Wesley Miaw reported bug #2958179 which identified a case of looping during
OpenSSL based SSL handshaking even though the multi interface was used and there was no good reason for it. http://curl.haxx.se/bug/view.cgi?id=2958179
This commit is contained in:
parent
1a1ffb10d0
commit
496002ea1c
3 changed files with 10 additions and 2 deletions
|
|
@ -2423,7 +2423,7 @@ ossl_connect_common(struct connectdata *conn,
|
|||
}
|
||||
|
||||
retcode = ossl_connect_step2(conn, sockindex);
|
||||
if(retcode)
|
||||
if(retcode || (data->state.used_interface == Curl_if_multi))
|
||||
return retcode;
|
||||
|
||||
} /* repeat step2 until all transactions are done. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue