| 59 | void onHandshaked() override { handshaked = true; } |
| 60 | void onDisconnected() override { disconnected = true; } |
| 61 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 62 | |
| 63 | public: |
| 64 | std::atomic<bool> connected{false}; |
nothing calls this directly
no outgoing calls
no test coverage detected