Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
ywy2090 committed Oct 19, 2024
1 parent 859ccb0 commit 3006298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bcos-boostssl/bcos-boostssl/httpserver/HttpServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ void HttpServer::onAccept(boost::beast::error_code ec, boost::asio::ip::tcp::soc
ss->set_verify_callback(NodeInfoTools::newVerifyCallback(nodeId));

ss->async_handshake(boost::asio::ssl::stream_base::server,
[this, ss, localEndpoint, remoteEndpoint, nodeId, self](boost::beast::error_code _ec) {
[ss, localEndpoint, remoteEndpoint, nodeId, self](boost::beast::error_code _ec) {
if (_ec)
{
HTTP_SERVER(INFO) << LOG_BADGE("async_handshake")
Expand Down

0 comments on commit 3006298

Please sign in to comment.