socket.io-client-cpp icon indicating copy to clipboard operation
socket.io-client-cpp copied to clipboard

C++11 implementation of Socket.IO client

Results 149 socket.io-client-cpp issues
Sort by recently updated
recently updated
newest added

Hi, could you please add more detailed examples of c++ clients or add comments? I have programmed multithreaded Java client/server apps and node.js socket.io apps before, but this c++ example...

I have a socket.io nodejs server and socket.io c++ client already set up. I am able to emit simple string message events and receive the data on my server side....

As title, my company use socket.io v3 or higher, I try to connect to server but there are no any connected message in server side!? The server was tested by...

question
needs info

Websocketpp is failing with Invalid HTTP Status...

Hello! I need in my project libsioclient lib that will support both tls and no tls connections. As I see when I build lib with tls support, its not working...

With existing websocketpp interface, I implement to support basic auth proxy. Usage: ```cpp sio::client h; std::string proxy = "http://127.0.0.1:3128/"; h.set_proxy_basic_auth(proxy, "user", "password"); h.connect("http://127.0.0.1:3000"); ```

I'm writing a client program to connect to a server with tls setup and listen for messages. The case is when the connection established, the OnClose callback was called after...

is there support to capture 'connect_error' event?

Struggling to understand why the querystring works but the auth parameter does not (it is not sent at all). Querystring Code ```cpp client.connect(uri, {{"token", token}}); ``` Auth Code: ```cpp sio::message::ptr...

I'm trying to transmit a draco encoded point cloud via socket.io. In the first iteration everything is fine but in every following iteration abort() is being called, because I get...