You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when using the websocketpp::serverwebsocketpp::config::asio_tls http_handler . and a connection is made. This times out after a while. Which cause a cancel event being called on the socket. This is not supported in Windows XP and Windows Server 2003 even if compiled on a different OS.
…s canceled on Windows XP #460
This fix switches to using the non-exception variant of socket::cancel
and logging the error instead of throwing it. There is a chance that
something else will need to be addressed as a result of this change as
some async operations might not be cancelled? I believe everything in
question has timeouts that will trigger operation cancellation at some
point anyways.
I've pushed an update to develop that may resolve this issue by handling this error within the libraries logging framework rather than throwing an exception and dying.
when using the websocketpp::serverwebsocketpp::config::asio_tls http_handler . and a connection is made. This times out after a while. Which cause a cancel event being called on the socket. This is not supported in Windows XP and Windows Server 2003 even if compiled on a different OS.
My workaround is to define BOOST_ASIO_ENABLE_CANCELIO , see http://www.boost.org/doc/libs/1_35_0/doc/html/boost_asio/using.html for more info.
The text was updated successfully, but these errors were encountered: