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.
Revision 2:06909bc328c0, committed 2011-10-20
- 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