websocketpp icon indicating copy to clipboard operation
websocketpp copied to clipboard

C++ websocket client/server library

Results 207 websocketpp issues
Sort by recently updated
recently updated
newest added

template-id is not allowed in ctor/dtor. It also fixed compilation with GCC 11

I'm trying to run this code from this [example](https://docs.websocketpp.org/md_tutorials_utility_client_utility_client.html) on Windows with vscode + cmake + vcpkg: ws-client.cpp ```cxx #include #include #include #include typedef websocketpp::client client; int main() { bool...

AFAIK websocket++ uses boost::thread and boost::regex to work correctly. Can this dependency be linked to std::threads and std::regex maybe? I'm trying to use websocket++ on a microcontroller and there's no...

How do I use this library in a CMake project?

Sorry I'm new to websocket++. I like what I'm seeing so far. But how can I load a certificate bundle (windows or linux) for the TLS connection? What API foo...

As per the newest SDK release of the very popular microcontroller esp32, espressif will drop support for the OpenSSL API wrapper. This means that will be no way to make...

Adjustments to use websocketpp on unix sockets with asio.

I have tried the lastest version, and v0.8.2 tags, the same error message. No this message if compile with C++17. -------------------------- /home/OGic-2/cppsrc/../3rdparty/websocketpp/logger/basic.hpp:61:54: error: expected ')' before 'h' 61 | basic(channel_type_hint::value...

Perhaps this is related to #149. I'm also having an issue with out-of-order messages. All my messages have a sequence number, and I detect out-of-order messages on the receiving side...