| 202 | void mapPort(bool enable) override { StartMapPort(enable); } |
| 203 | std::optional<Proxy> getProxy(Network net) override { return GetProxy(net); } |
| 204 | size_t getNodeCount(ConnectionDirection flags) override |
| 205 | { |
| 206 | return m_context->connman ? m_context->connman->GetNodeCount(flags) : 0; |
| 207 | } |
| 208 | bool getNodesStats(NodesStats& stats) override |
| 209 | { |
| 210 | stats.clear(); |
no test coverage detected