billroy / socket.io-arduino-client

A socket.io client for the Arduino Ethernet shield
MIT License
195 stars 66 forks source link

Not able to connect #11

Closed simaoj closed 7 years ago

simaoj commented 7 years ago

Even though I could fix the couple bugs on the compilation, it seems there is an error ocurring on the connection. I have sniffed my connection using wireshark, sending a message to a server in my computer, and there really is some sort of problem in the handshake. The package is sent by the client and received by the host, by the connection with the server is never established. Was anyone able to make it work?

billroy commented 7 years ago

Thanks for your note. The pre-socket.io http://pre-socket.io/-1.0 handshake code in this version is indeed broken because the protocol has changed with socket.io http://socket.io/ 1.x.

I do not have time to invest in repairing this module. I'd welcome a volunteer to take it on.

-br

On Jan 11, 2017, at 8:33 AM, José Simão notifications@github.com wrote:

Even though I could fix the couple bugs on the compilation, it seems there is an error ocurring on the connection. I have sniffed my connection using wireshark, sending a message to a server in my computer, and there really is some sort of problem in the handshake. The package is sent by the client and received by the host, by the connection with the server is never established. Was anyone able to make it work?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/billroy/socket.io-arduino-client/issues/11, or mute the thread https://github.com/notifications/unsubscribe-auth/AAF-xjME-Nb2VPdOf9q92xNtYcBO-oCnks5rRPZDgaJpZM4Lgtru.

simaoj commented 7 years ago

I would love to in the future. For the time, I was able to get it to work by downgrading my socket.io application to version 0.9.11. But thank you very much for the quick reply.