| 170 | return false; |
| 171 | } |
| 172 | bool disconnectByAddress(const CNetAddr& net_addr) override |
| 173 | { |
| 174 | if (m_context->connman) { |
| 175 | return m_context->connman->DisconnectNode(net_addr); |
| 176 | } |
| 177 | return false; |
| 178 | } |
| 179 | bool disconnectById(NodeId id) override |
| 180 | { |
| 181 | if (m_context->connman) { |
no test coverage detected