| 100 | void onConnected(std::shared_ptr<TCPSession>& session) override { connected = true; ++clients; } |
| 101 | void onDisconnected(std::shared_ptr<TCPSession>& session) override { disconnected = true; --clients; } |
| 102 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 103 | |
| 104 | public: |
| 105 | std::atomic<bool> started{false}; |
nothing calls this directly
no outgoing calls
no test coverage detected