| 300 | } |
| 301 | |
| 302 | void Session::CheckControlSock() |
| 303 | { |
| 304 | LOCK(m_mutex); |
| 305 | |
| 306 | std::string errmsg; |
| 307 | if (!m_control_sock->IsConnected(errmsg)) { |
| 308 | Log("Control socket error: %s", errmsg); |
| 309 | Disconnect(); |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | void Session::DestGenerate(const Sock& sock) |
| 314 | { |
nothing calls this directly
no test coverage detected