| 15 | } |
| 16 | |
| 17 | void CUserData::printMessage(WebsocketConnection& connection, const String& msg) |
| 18 | { |
| 19 | int i = activeWebSockets.indexOf(&connection); |
| 20 | if(i >= 0) { |
| 21 | Serial << _F("Received msg on connection ") << i << ": " << msg << endl; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | void CUserData::logOut() |
| 26 | { |
no test coverage detected