Update Csocket to 60a71941eac8e4b5728abd82deb95db4668345be

It fixes crash on SSL renegotiation if Csock object was swapped with
another one
This commit is contained in:
Alexey Sokolov
2014-12-14 16:40:46 +00:00
parent 8bc433a576
commit 7fc918c2e6

View File

@@ -1051,6 +1051,11 @@ void Csock::Copy( const Csock & cCopy )
m_pCerVerifyCB = cCopy.m_pCerVerifyCB;
if( m_ssl )
{
SSL_set_ex_data( m_ssl, GetCsockSSLIdx(), this );
}
#endif /* HAVE_LIBSSL */
CleanupCrons();