| 1425 | } |
| 1426 | |
| 1427 | bool StopNode() { |
| 1428 | LogPrint(BCLog::INFO, "StopNode()\n"); |
| 1429 | MapPort(false); |
| 1430 | if (semOutbound) |
| 1431 | for (int32_t i = 0; i < MAX_OUTBOUND_CONNECTIONS; i++) |
| 1432 | semOutbound->post(); |
| 1433 | MilliSleep(50); |
| 1434 | DumpAddresses(); |
| 1435 | |
| 1436 | return true; |
| 1437 | } |
| 1438 | |
| 1439 | class CNetCleanup { |
| 1440 | public: |
no test coverage detected