| 110 | void onConnected(std::shared_ptr<SSLSession>& session) override { connected = true; } |
| 111 | void onHandshaked(std::shared_ptr<SSLSession>& session) override { handshaked = true; ++clients; } |
| 112 | void onDisconnected(std::shared_ptr<SSLSession>& session) override { disconnected = true; --clients; } |
| 113 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 114 | |
| 115 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected