如何与c ++库websocket ++建立安全套接字连接?

时间:2015-11-16 22:06:42

标签: sockets c++11 ssl websocket boost-asio

我可以使用此处的实用程序客户端https://github.com/zaphoyd/websocketpp/blob/master/tutorials/utility_client/step6.cpp

建立常规WS连接

但是,我需要尝试安全的WS连接,并使用下面的配置替换配置并链接所需的库。

typedef websocketpp::client<websocketpp::config::asio_tls_client> client;

我的处理程序如下:

typedef std::shared_ptr<boost::asio::ssl::context> context_ptr;

// part of class connection_metadata
static context_ptr on_tls_init(websocketpp::connection_hdl) {
    context_ptr ctx = std::make_shared<boost::asio::ssl::context>(boost::asio::ssl::context::sslv23);

    try {
        ctx->set_options(boost::asio::ssl::context::default_workarounds |
                         boost::asio::ssl::context::no_sslv2 |
                         boost::asio::ssl::context::no_sslv3 |
                         boost::asio::ssl::context::single_dh_use);
    } catch (std::exception& e) {
        std::cout <<"Error in context pointer: "<< e.what() << std::endl;
    }
    return ctx;
}

// part of class websocket_endpoint 
con->set_tls_init_handler(bind(&connection_metadata::on_tls_init,metadata_ptr,std::placeholders::_1));

当我尝试以下行获取连接时:

client::connection_ptr con = m_endpoint.get_connection(uri, ec);

我收到:

  

连接创建尝试失败

1 个答案:

答案 0 :(得分:0)

我已经解决了这个问题,感谢:https://groups.google.com/forum/#!topic/websocketpp/SimAUzwZUVM

我必须使on_tls_init成为静态函数并像这样使用它(在获取连接之前): m_endpoint.set_tls_init_handler(connection_metadata::on_tls_init)

其中m_endpoint是客户端对象。