| 61 | void onWSDisconnected() override { disconnected = true; } |
| 62 | void onWSReceived(const void* buffer, size_t size) override { received += size; } |
| 63 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 64 | |
| 65 | public: |
| 66 | std::atomic<bool> connected{false}; |
nothing calls this directly
no outgoing calls
no test coverage detected