| 538 | } |
| 539 | |
| 540 | bool GetNameProxy(proxyType &nameProxyOut) { |
| 541 | LOCK(cs_proxyInfos); |
| 542 | if(!nameProxy.IsValid()) |
| 543 | return false; |
| 544 | nameProxyOut = nameProxy; |
| 545 | return true; |
| 546 | } |
| 547 | |
| 548 | bool HaveNameProxy() { |
| 549 | LOCK(cs_proxyInfos); |
no test coverage detected