We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f49fa commit 83fc420Copy full SHA for 83fc420
src/internal/sio_client_impl.cpp
@@ -273,7 +273,8 @@ namespace sio
273
{
274
if(ec || m_con.expired())
275
276
- LOG("ping exit,con is expired?"<<m_con.expired()<<",ec:"<<ec.message()<<endl);
+ if (ec != boost::asio::error::operation_aborted)
277
+ LOG("ping exit,con is expired?"<<m_con.expired()<<",ec:"<<ec.message()<<endl);
278
return;
279
}
280
packet p(packet::frame_ping);
0 commit comments