| 242 | } |
| 243 | |
| 244 | int ConnectI(TCont* cont, TSocketHolder& s, const TNetworkAddress& addr) noexcept { |
| 245 | return ConnectD(cont, s, addr, TInstant::Max()); |
| 246 | } |
| 247 | |
| 248 | int ConnectD(TCont* cont, SOCKET s, const struct sockaddr* name, socklen_t namelen, TInstant deadline) noexcept { |
| 249 | if (connect(s, name, namelen)) { |
no test coverage detected