Socket.IO server entry in C ++

I want to write a C ++ server that uses the same wire format as Socket.IO. I found a packet codec gevent-socketiofor the wire, but I can not find the corresponding client codec.

Packets are encoded as follows: 5:1+::{"name": "tobi"}

The #Packet protocol does not seem to define the format of the explorer, and the identifiers do not seem to match the identifiers used . socket.io-protocolgevent-socketio

Is there a specific wire format? Is it possible to write a Socket.IO-compatible server, perhaps for some fixed version of the protocol, with a fixed / known client library?

+5
source share

All Articles