| 325 | } |
| 326 | |
| 327 | void SetReachable(enum Network net, bool reachable) |
| 328 | { |
| 329 | if (net == NET_UNROUTABLE || net == NET_INTERNAL) |
| 330 | return; |
| 331 | LOCK(g_maplocalhost_mutex); |
| 332 | vfLimited[net] = !reachable; |
| 333 | } |
| 334 | |
| 335 | bool IsReachable(enum Network net) |
| 336 | { |
no outgoing calls