| 308 | } |
| 309 | |
| 310 | int AcceptT(TCont* cont, SOCKET s, struct sockaddr* addr, socklen_t* addrlen, TDuration timeout) noexcept { |
| 311 | return AcceptD(cont, s, addr, addrlen, timeout.ToDeadLine()); |
| 312 | } |
| 313 | |
| 314 | int AcceptI(TCont* cont, SOCKET s, struct sockaddr* addr, socklen_t* addrlen) noexcept { |
| 315 | return AcceptD(cont, s, addr, addrlen, TInstant::Max()); |
nothing calls this directly
no test coverage detected