| 1 | #include "CUserData.h" |
| 2 | |
| 3 | void CUserData::addSession(WebsocketConnection& connection) |
| 4 | { |
| 5 | activeWebSockets.addElement(&connection); |
| 6 | connection.setUserData(this); |
| 7 | } |
| 8 | |
| 9 | void CUserData::removeSession(WebsocketConnection& connection) |
| 10 | { |
no test coverage detected