Samuel Mokrani / Websocket_Wifly

Files at this revision

API Documentation at this revision

Comitter:
samux
Date:
Thu Oct 20 09:41:56 2011 +0000
Parent:
1:5dda5cd3caf2
Commit message:

Changed in this revision

Websocket.h Show annotated file Show diff for this revision Revisions of this file
--- a/Websocket.h	Thu Oct 20 09:35:12 2011 +0000
+++ b/Websocket.h	Thu Oct 20 09:41:56 2011 +0000
@@ -55,7 +55,7 @@
  *   wifly = new Wifly(p9, p10, p20, "network", "password", true);
  *   ws = new Websocket("ws://ip_domain/path", wifly);
  *   
- *   if(wifly->Join())
+ *   if(wifly->join())
  *   {
  *       if(ws->connect())
  *       {
@@ -63,7 +63,7 @@
  *           while(1)
  *           {
  *               wait(0.1);
- *               ws->Send("test");
+ *               ws->send("test");
  *           }
  *       }
  *       else