ASTERISK-28797
Change-Id: Iab364a2c2519fd9d11d1c28293fda43d61b64c28
ast_sockaddr_stringify(&tcptls_session->remote_address));
#ifndef DO_SSL
if (tcptls_session->parent->tls_cfg) {
- ast_log(LOG_ERROR, "Attempted a TLS connection without OpenSSL support. This will not work!\n");
+ ast_log(LOG_ERROR, "TLS client failed: Asterisk is compiled without OpenSSL support. Install OpenSSL development headers and rebuild Asterisk after running ./configure\n");
}
#endif
ao2_ref(tcptls_session, -1);
{
#ifndef DO_SSL
if (cfg->enabled) {
- ast_log(LOG_NOTICE, "Configured without OpenSSL Development Headers");
+ ast_log(LOG_ERROR, "TLS server failed: Asterisk is compiled without OpenSSL support. Install OpenSSL development headers and rebuild Asterisk after running ./configure\n");
cfg->enabled = 0;
}
return 0;