| 184 | } |
| 185 | |
| 186 | TContIOStatus WriteVectorT(TCont* cont, SOCKET fd, TContIOVector* vec, TDuration timeOut) noexcept { |
| 187 | return WriteVectorD(cont, fd, vec, timeOut.ToDeadLine()); |
| 188 | } |
| 189 | |
| 190 | TContIOStatus WriteVectorI(TCont* cont, SOCKET fd, TContIOVector* vec) noexcept { |
| 191 | return WriteVectorD(cont, fd, vec, TInstant::Max()); |
nothing calls this directly
no test coverage detected