check whether a given network is one we can probably connect to */
| 312 | |
| 313 | /** check whether a given network is one we can probably connect to */ |
| 314 | bool IsReachable(enum Network net) |
| 315 | { |
| 316 | LOCK(cs_mapLocalHost); |
| 317 | return vfReachable[net] && !vfLimited[net]; |
| 318 | } |
| 319 | |
| 320 | /** check whether a given address is in a network we can probably connect to */ |
| 321 | bool IsReachable(const CNetAddr& addr) |
no test coverage detected