| 132 | } |
| 133 | |
| 134 | TContIOStatus ReadVectorT(TCont* cont, SOCKET fd, TContIOVector* vec, TDuration timeOut) noexcept { |
| 135 | return ReadVectorD(cont, fd, vec, timeOut.ToDeadLine()); |
| 136 | } |
| 137 | |
| 138 | TContIOStatus ReadVectorI(TCont* cont, SOCKET fd, TContIOVector* vec) noexcept { |
| 139 | return ReadVectorD(cont, fd, vec, TInstant::Max()); |
nothing calls this directly
no test coverage detected