MXS-2483: Make server SSL private
The old server_ssl member is now renamed and private. The ssl_context and set_ssl_context methods provide access to it.
This commit is contained in:
@ -28,8 +28,11 @@
|
||||
class Server : public SERVER
|
||||
{
|
||||
public:
|
||||
Server(const std::string& name, const std::string& protocol = "", const std::string& authenticator = "")
|
||||
: SERVER()
|
||||
Server(const std::string& name,
|
||||
const std::string& protocol = "",
|
||||
const std::string& authenticator = "",
|
||||
mxs::SSLContext* ssl = nullptr)
|
||||
: SERVER(ssl)
|
||||
, m_name(name)
|
||||
{
|
||||
m_settings.protocol = protocol;
|
||||
|
||||
Reference in New Issue
Block a user