From: Alexander Traud Date: Mon, 6 Nov 2017 09:18:24 +0000 (+0100) Subject: tcptls: Print notice when TLS is enabled but not configured. X-Git-Tag: 13.19.0-rc1~158^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dd2b18e329e9815ac3c1c3af9e2ef574cf965e2;p=thirdparty%2Fasterisk.git tcptls: Print notice when TLS is enabled but not configured. Asterisk can be compiled without a SSL/TLS library, without the Development Headers of OpenSSL. However, if TLS (SIP) or Secure-WebSockets (WebRTC) was enabled in a configuration file, Asterisk did not notice the user. Asterisk failed silently, only the corresponding TCP ports were not open. ASTERISK-27394 Reported-by: mossley74 Change-Id: Ib8b7539a5b2af8154c22e5f7a40fc68f95d95b93 --- diff --git a/main/tcptls.c b/main/tcptls.c index 144b32f470..ef22094bf6 100644 --- a/main/tcptls.c +++ b/main/tcptls.c @@ -874,7 +874,10 @@ void *ast_tcptls_server_root(void *data) static int __ssl_setup(struct ast_tls_config *cfg, int client) { #ifndef DO_SSL - cfg->enabled = 0; + if (cfg->enabled) { + ast_log(LOG_NOTICE, "Configured without OpenSSL Development Headers"); + cfg->enabled = 0; + } return 0; #else int disable_ssl = 0;