workaround bug in Socket::isReadyToWrite

This commit is contained in:
Benjamin Sergeant
2019-03-18 20:37:33 -07:00
parent eb6ee52aaa
commit bbc0e2106c
3 changed files with 25 additions and 19 deletions

View File

@ -211,7 +211,8 @@ namespace ix
setReadyState(CLOSED);
break;
}
else if (result == PollResultType_ReadyForWrite)
// FIXME: why are we not getting PollResultType_ReadyForWrite ??
else // if (result == PollResultType_ReadyForWrite)
{
sendOnSocket();
}