Set auto-retry mode to avoid some spurious errors.
Submitted by: Andre Albsmeier <andre.albsmeier@siemens.com> MFC after: 7 days
This commit is contained in:
parent
eb5387e3ce
commit
a91193c322
@ -297,6 +297,7 @@ _fetch_ssl(conn_t *conn, int verbose)
|
||||
|
||||
conn->ssl_meth = SSLv23_client_method();
|
||||
conn->ssl_ctx = SSL_CTX_new(conn->ssl_meth);
|
||||
SSL_CTX_set_mode(conn->ssl_ctx, SSL_MODE_AUTO_RETRY);
|
||||
|
||||
conn->ssl = SSL_new(conn->ssl_ctx);
|
||||
if (conn->ssl == NULL){
|
||||
|
Loading…
Reference in New Issue
Block a user