| 475 | } |
| 476 | |
| 477 | void SocketReceiver::GetWaitObjects(WaitObjectContainer &container, CallStack const& callStack) |
| 478 | { |
| 479 | if (m_resultPending) |
| 480 | container.AddHandle(m_event, CallStack("SocketReceiver::GetWaitObjects() - result pending", &callStack)); |
| 481 | else if (!m_eofReceived) |
| 482 | container.SetNoWait(CallStack("SocketReceiver::GetWaitObjects() - result ready", &callStack)); |
| 483 | } |
| 484 | |
| 485 | unsigned int SocketReceiver::GetReceiveResult() |
| 486 | { |
nothing calls this directly
no test coverage detected