如何识别与websocketpp的连接

时间:2019-09-14 01:19:39

标签: c++ websocket

我有一段使用websocketpp运行服务器的代码。我想确定到服务器的不同连接。为此,似乎应该使用websocketpp::connection_hdl hdl

namespace websocketpp {

/// A handle to uniquely identify a connection.
/**
 * This type uniquely identifies a connection. It is implemented as a weak
 * pointer to the connection in question. This provides uniqueness across
 * multiple endpoints and ensures that IDs never conflict or run out.
 *
 * It is safe to make copies of this handle, store those copies in containers,
 * and use them from other threads.
 *
 * This handle can be upgraded to a full shared_ptr using
 * `endpoint::get_con_from_hdl()` from within a handler fired by the connection
 * that owns the handler.
 */
typedef lib::weak_ptr<void> connection_hdl;

但是正如您所看到的,它是weak_ptr<void>,我不知道该如何与他人进行比较。

我有一个以websocketpp::connection_hdl作为索引的地图,当我尝试查看是否存在以下索引时:

std::map<websocketpp::connection_hdl, asio::ip::tcp::socket> active_connections;
if (active_connections.count(con->get_socket()) > 0) {}

编译器抱怨:

  

错误C2678:二进制'<':未找到需要左手操作的运算符   'const _Ty'类型的操作数(或没有可接受的转换)

有什么办法可以从连接中获取套接字(原始整数套接字)。如果可以的话,我可以将其用作索引并解决问题。

您还能看到其他解决方法吗?

1 个答案:

答案 0 :(得分:-1)

有两个问题:

  1. 您正在使用weak_ptr作为键,而未使用std :: owner_less。详细信息:How can I use a std::map with std::weak_ptr as key?
  2. 在您的示例中,您使用套接字作为键而不是connection_hdl。

解决方案:

std::map<websocketpp::connection_hdl, boost::asio::ip::tcp::socket, std::owner_less<websocketpp::connection_hdl>> active_connections;
if (active_connections.count(con) > 0) {}

但是,该映射没有太大意义:如果具有connection_hdl,则可以使用get_socket()方法获取连接的套接字。我从未使用过这种方法,但我认为它应该起作用?如果只想存储所有打开的连接及其套接字,则包含连接句柄的std :: vector可能更好。