Commit 6c6a0965 authored by Robert Butora's avatar Robert Butora
Browse files

ssl: deprecated ssl::context constructor removed in boost 1.66

parent 612769cb
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -15,8 +15,7 @@ SSLServer::SSLServer(Tango::DeviceImpl* deviceImpl_p,
{
    DEBUG_STREAM << "SSLServer::SSLServer()" << endl;

    m_context_sp.reset(new boost::asio::ssl::context(*m_ioService_sp,
        boost::asio::ssl::context::sslv23));
    m_context_sp.reset(new boost::asio::ssl::context(boost::asio::ssl::context::sslv23));

    m_context_sp->set_options(boost::asio::ssl::context::default_workarounds |
        boost::asio::ssl::context::no_sslv2 |