select refactoring IXSocket::select -> IXSocket::poll

This commit is contained in:
Benjamin Sergeant
2019-06-25 10:16:40 -07:00
parent e5faa23d4f
commit 4a600c2611
3 changed files with 13 additions and 14 deletions

View File

@ -330,7 +330,7 @@ namespace ix
}
// poll the socket
PollResultType pollResult = _socket->poll(lastingTimeoutDelayInMs);
PollResultType pollResult = _socket->isReadyToRead(lastingTimeoutDelayInMs);
// Make sure we send all the buffered data
// there can be a lot of it for large messages.