| 486 | } |
| 487 | |
| 488 | bool SetProxy(enum Network net, CService addrProxy) |
| 489 | { |
| 490 | assert(net >= 0 && net < NET_MAX); |
| 491 | if (!addrProxy.IsValid()) |
| 492 | return false; |
| 493 | LOCK(cs_proxyInfos); |
| 494 | proxyInfo[net] = addrProxy; |
| 495 | return true; |
| 496 | } |
| 497 | |
| 498 | bool GetProxy(enum Network net, proxyType& proxyInfoOut) |
| 499 | { |