gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 12:53:56 30 4
gpt4 key购买 nike

我可以在这里使用实用程序客户端建立常规 WS 连接,https://github.com/zaphoyd/websocketpp/blob/master/tutorials/utility_client/step6.cpp

但是我需要尝试一个安全的 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);

我收到:

Connection creation attempt failed

最佳答案

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

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

其中 m_endpoint 是一个客户端对象。

关于sockets - 如何与c++库websocket++建立安全套接字连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33745510/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com