SocketIO is a compatibility library on top of the MBED Websockets API. Currently the broadcast paradigm is supported. There is much more to the SocketIO spec that could be built into this API. Have fun!

Dependents:   df-2013-thermostat-handson df-2013-minihack-thermostat-complete df-2013-minihack-thermostat df-2013-thermostat-remotes ... more

Files at this revision

API Documentation at this revision

Comitter:
ansond
Date:
Fri Nov 08 20:10:26 2013 +0000
Parent:
10:997b8c5d2d46
Child:
12:8fe60d9ca3bf
Commit message:
fixed buffer overrrun

Changed in this revision

SocketIO.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/SocketIO.cpp	Thu Oct 17 18:58:40 2013 +0000
+++ b/SocketIO.cpp	Fri Nov 08 20:10:26 2013 +0000
@@ -67,7 +67,7 @@
     // only emit if we are connected
     if (this->is_connected() == true) {
         // prepare the JSON message for SocketIO
-        char buffer[256];
+        char buffer[512];
         char *json = this->prepareSocketIOJSONMessage(name,args,buffer);
         
         // send a heartbeat