我有一个多线程的websocketpp服务器。当我退出程序并重新启动时,没有客户端连接,它没有问题。

但是,当客户端连接并且我退出/重新启动时,程序将引发此错误

[2017-08-06 15:36:05] [info] asio listen error: system:98 ()
terminate called after throwing an instance of 'websocketpp::exception'
   what():  Underlying Transport Error
Aborted

我相信我正在执行适当的断开连接顺序,并且在启动退出顺序时收到以下消息(我自己的调试信息)
[2017-08-06 15:35:55] [control] Control frame received with opcode 8
on_close
[2017-08-06 15:35:55] [disconnect] Disconnect close local:[1000] remote:[1000]
Quitting :3
Waiting for thread

asio错误是什么意思?我希望有人之前见过此情况,以便我可以开始进行故障排除。谢谢!

编辑:
我正在调整股票的broadcast_server示例,其中
typedef std::map<connection_hdl, connection_data, std::owner_less<connection_hdl> > con_list;
con_list m_connections;

代码以关闭连接。
lock_guard<mutex> guard(m_connection_lock);
std::cout << "Closing Server" << std::endl;
con_list::iterator it;
for (it = m_connections.begin(); it != m_connections.end(); ++it)
{
    m_server.close(it->first, websocketpp::close::status::normal, "", ec);
    if (ec)
    {
        std::cout << "> Error initiating client close: " << ec.message() << std::endl;
    }
    m_connections.erase(it->first);
}

在广播服务器类的析构函数中,我也有一个m_server.stop()

最佳答案

每当有websocketpp::exception时,我首先会在我明确使用端点的任何地方进行检查,在您的情况下为m_server

例如,它可能在您正在调用m_server.send(...)的地方。由于您使用的是多线程,因此很有可能一个线程可能正在尝试使用connection_hdl,而该websocketpp::exception invalid state已经被另一个线程关闭了。

在这种情况下,通常是Underlying Transport Error。我不确定cout

您可以使用断点发现罪魁祸首(或将一串connection_hdl序列放入不同的方法中,并在抛出异常之前查看哪个序列已被破坏),或使用try / catch:

try {
    m_server.send(hdl, ...);
    // or
    m_server.close(hdl, ...);
    // or really anything you're trying to do using `m_server`.
} catch (const websocketpp::exception &e) {//by safety, I just go with `const std::exception` so that it grabs any potential exceptions out there.
    std::cout << "Exception in method foo() because: " << e.what() /* log the cause of the exception */ << std::endl;
}

否则,我注意到当您尝试关闭m_server.pause_reading(it->first)时,有时似乎会引发异常,即使似乎没有其他线程正在访问它。但是,如果将其放入try / catch中,尽管它仍然会引发异常,但由于它不会终止程序,因此最终会关闭处理程序。

另外,也许在调用close()冻结该处理程序的 Activity 之前尝试m_server.listen(...)

经过第二次查看,我认为您在使用ojit_code进行监听时会抛出异常。尝试用try / catch包围它,并放置自定义日志消息。

09-07 07:04