| 2262 | } |
| 2263 | |
| 2264 | void CConnman::ThreadSocketHandler() |
| 2265 | { |
| 2266 | AssertLockNotHeld(m_total_bytes_sent_mutex); |
| 2267 | |
| 2268 | while (!m_interrupt_net->interrupted()) { |
| 2269 | DisconnectNodes(); |
| 2270 | NotifyNumConnectionsChanged(); |
| 2271 | SocketHandler(); |
| 2272 | } |
| 2273 | } |
| 2274 | |
| 2275 | void CConnman::WakeMessageHandler() |
| 2276 | { |
nothing calls this directly
no test coverage detected