| 648 | } |
| 649 | |
| 650 | std::unique_ptr<Sock> ConnectDirectly(const CService& dest, bool manual_connection) |
| 651 | { |
| 652 | return ConnectDirectly(dest, manual_connection, std::chrono::milliseconds{nConnectTimeout}); |
| 653 | } |
| 654 | |
| 655 | std::unique_ptr<Sock> ConnectDirectly(const CService& dest, |
| 656 | bool manual_connection, |
no test coverage detected