| 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()); |
| 203 | } |
| 204 | |
| 205 | TContIOStatus WriteI(TCont* cont, SOCKET fd, const void* buf, size_t len) noexcept { |
| 206 | return WriteD(cont, fd, buf, len, TInstant::Max()); |
nothing calls this directly
no test coverage detected