socket.io-poco
socket.io-poco copied to clipboard
cross platform c++ socket.io client written using poco libraries
Do someone have a solution for this issue? ```bash [ 94%] Linking CXX executable ../../../bin/socketiopoco_example /usr/bin/ld: warning: libPocoNet.so.80, needed by /home/donavanmartin/Desktop/test/socket.io/c++/socket.io-poco/src/../third_party/local/lib/libPocoNetSSL.so, may conflict with libPocoNet.so.64 /usr/bin/ld: warning: libPocoFoundation.so.80, needed by...
Ubuntu 18 gcc 17. Getting this error when connecting. Is this because revision 3 isn't supported? https://github.com/socketio/engine.io-protocol `Program received signal SIGSEGV, Segmentation fault. 0x00005555556eae32 in Poco::(anonymous namespace)::formatOne(std::__cxx11::basic_string&, __gnu_cxx::__normal_iterator&, __gnu_cxx::__normal_iterator const&,...
… successful when node.js server is not listening the port, connect will failed and return a null pointer,Then segment fault will occur if you continue to run it.So we should...
I found that cmake scripts can't build correctly in g++-4.8,and it work well after specified CMAKE_CXX_STANDARD to 11. Signed-off-by: sliver.chen
SIOClient::connect(std::string uri) returns a pointer to a "global" client by calling SIOClientRegistry::instance()->getClient(fullpath). If a client to a specific URI already exists, SIOClient::connect returns a pointer to the existing client. If...
I have to know when did we lose connection to the peer endpoint in one of my projects. For example, we pulled out the ethernet cable and expected our code...
Hi, first of all: Wonderful Socket.IO framework :) But I still have a small request, I wonder how to realize the best, maybe it's on your agenda, or you have...
On my server side I send a message to the client: `socket.emit('message',JSON.stringify(send_msg));` but then if I do `socket.send(JSON.stringify(send_msg));` The message is not properly caught and the handleMessage is fired instead...