zhllxt / asio2

Header only c++ network library, based on asio,support tcp,udp,http,websocket,rpc,ssl,icmp,serial_port,socks5.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

能否提供ws服务首次应答后的通知或回调或手动应答

obqrn opened this issue · comments

commented

我使用

server.bind("/ws", websocket::listener<asio2::http_session>{}.
	on("message", [](std::shared_ptr<asio2::http_session>& session_ptr, std::string_view data)
{

方式创建ws服务,功能上需要ws客户端链接后ws服务应答后的通知,服务再处理业务,看了代码没有找到这种回调接口。