Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SocketIO by
Diff: SocketIO.cpp
- Revision:
- 3:529ce2bcfe77
- Parent:
- 2:2979735cb379
- Child:
- 4:ad06c58c7cf4
diff -r 2979735cb379 -r 529ce2bcfe77 SocketIO.cpp --- a/SocketIO.cpp Mon Jul 08 02:43:43 2013 +0000 +++ b/SocketIO.cpp Mon Jul 08 02:50:57 2013 +0000 @@ -70,6 +70,9 @@ char buffer[256]; char *json = this->prepareSocketIOJSONMessage(name,args,buffer); + // send a heartbeat + this->ws->send("2::"); + // send the message bytesSent = this->ws->send(json); }