check whether a given address is potentially local */
| 305 | |
| 306 | /** check whether a given address is potentially local */ |
| 307 | bool IsLocal(const CService& addr) |
| 308 | { |
| 309 | LOCK(cs_mapLocalHost); |
| 310 | return mapLocalHost.count(addr) > 0; |
| 311 | } |
| 312 | |
| 313 | /** check whether a given network is one we can probably connect to */ |
| 314 | bool IsReachable(enum Network net) |
no test coverage detected