Simple-WebSocket-Server icon indicating copy to clipboard operation
Simple-WebSocket-Server copied to clipboard

A very simple, fast, multithreaded, platform independent WebSocket (WS) and WebSocket Secure (WSS) server and client library implemented using C++11, Boost.Asio and OpenSSL. Created to be an easy way...

Results 28 Simple-WebSocket-Server issues
Sort by recently updated
recently updated
newest added

While building on windows, visualstudio links to boost regex which it does not find since it's not referenced as a required library in cmakelists

According to the [Websocket RFC](https://tools.ietf.org/html/rfc6455#section-5.5.3), a Pong frame sent in response to a Ping frame must have identical "Application data" as found in the message body of the Ping frame...

Sample Client/Server + Optional Sec-WebSocket-Protocol + No More Visual Studio Warnings ------------------------------------------------------------------------------- I've been using Simple-WebSocket-Server for some time, and I've collected several changes. I will be leaving my current...

cmake search for static libraries too

it seems client can only send message within a callback function like on_open(), because it requires "shared_ptr" from the on_open input parameter to make the "connection->send(send_stream);" action. But if in...

Got this error testing wss client ``` terminate called after throwing an instance of 'boost::exception_detail::clone_impl' what(): context: asio.ssl error Aborted ``` $ ssh -V OpenSSH_7.2p2 Ubuntu-4ubuntu2.4, OpenSSL 1.0.2g 1 Mar...

When client disconnect the send function throws an exception in 'cancel_timeout()' - 'std::unique_lock lock(timer_mutex);' row. The exception is: "Exception thrown at 0x09643473 (msvcp140d.dll) in mtsrv.dev.exe: 0xC0000005: Access violation reading location...

Hi, thank you for this library! I'm trying to use the library with ASIO but, although it's installed in my system, cmake fails. My environment: OS: Archlinux compiler: clang cmake...

Hello, @eidheim First, thanks to make this Simple WebSocket. I needed to send binary mode. I found the article, https://github.com/eidheim/Simple-WebSocket-Server/issues/30, about this, and applied to my project. FYI, here is...