| 78 | void onWSConnected(const CppServer::HTTP::HTTPRequest& request) override { connected = true; } |
| 79 | void onWSDisconnected() override { disconnected = true; } |
| 80 | void onWSReceived(const void* buffer, size_t size) override { SendBinaryAsync(buffer, size); } |
| 81 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 82 | |
| 83 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected