add DBG for successfully completing SSL verification. with this commit, I believe that the ssl api should be 100% functional.

SVN revision: 52988
This commit is contained in:
Mike Blumenkrantz 2010-10-02 22:27:30 +00:00
parent e8ee2a75f0
commit 2f5589d890
1 changed files with 2 additions and 0 deletions

View File

@ -541,6 +541,7 @@ _ecore_con_ssl_server_init_gnutls(Ecore_Con_Server *svr)
SSL_ERROR_CHECK_GOTO_ERROR(!gnutls_x509_crt_check_hostname(cert, svr->name));
gnutls_x509_crt_deinit(cert);
DBG("SSL certificate verification succeeded!");
return ECORE_CON_SSL_ERROR_NONE;
error:
@ -1053,6 +1054,7 @@ _ecore_con_ssl_server_init_openssl(Ecore_Con_Server *svr)
/* use CRL/CA lists to verify */
if (SSL_get_peer_certificate(svr->ssl))
SSL_ERROR_CHECK_GOTO_ERROR(SSL_get_verify_result(svr->ssl));
DBG("SSL certificate verification succeeded!");
return ECORE_CON_SSL_ERROR_NONE;