MXS-2483: Rename SSL_LISTENER to mxs::SSLContext

This commit is contained in:
Markus Mäkelä
2019-05-17 15:47:34 +03:00
parent 650230455a
commit cab336ed89
13 changed files with 52 additions and 52 deletions

View File

@ -195,7 +195,7 @@ Server* Server::server_alloc(const char* name, const MXS_CONFIG_PARAMETER& param
return NULL;
}
SSL_LISTENER* ssl = NULL;
mxs::SSLContext* ssl = NULL;
if (!config_create_ssl(name, params, false, &ssl))
{
@ -528,7 +528,7 @@ void Server::print_to_dcb(DCB* dcb) const
}
if (server->server_ssl)
{
SSL_LISTENER* l = server->server_ssl;
mxs::SSLContext* l = server->server_ssl;
dcb_printf(dcb,
"\tSSL initialized: %s\n",
l->ssl_init_done ? "yes" : "no");