| 238 | } |
| 239 | |
| 240 | int ConnectT(TCont* cont, TSocketHolder& s, const TNetworkAddress& addr, TDuration timeout) noexcept { |
| 241 | return ConnectD(cont, s, addr, timeout.ToDeadLine()); |
| 242 | } |
| 243 | |
| 244 | int ConnectI(TCont* cont, TSocketHolder& s, const TNetworkAddress& addr) noexcept { |
| 245 | return ConnectD(cont, s, addr, TInstant::Max()); |
no test coverage detected