| 193 | |
| 194 | |
| 195 | TContIOStatus WriteD(TCont* cont, SOCKET fd, const void* buf, size_t len, TInstant deadline) noexcept { |
| 196 | IOutputStream::TPart part(buf, len); |
| 197 | TContIOVector vec(&part, 1); |
| 198 | return WriteVectorD(cont, fd, &vec, deadline); |
| 199 | } |
| 200 | |
| 201 | TContIOStatus WriteT(TCont* cont, SOCKET fd, const void* buf, size_t len, TDuration timeout) noexcept { |
| 202 | return WriteD(cont, fd, buf, len, timeout.ToDeadLine()); |
no test coverage detected