| 589 | } |
| 590 | |
| 591 | unsigned int SocketSender::GetSendResult() |
| 592 | { |
| 593 | if (m_resultPending) |
| 594 | { |
| 595 | DWORD flags = 0; |
| 596 | BOOL result = WSAGetOverlappedResult(m_s, &m_overlapped, &m_lastResult, false, &flags); |
| 597 | m_s.CheckAndHandleError("WSAGetOverlappedResult", result); |
| 598 | m_resultPending = false; |
| 599 | } |
| 600 | return m_lastResult; |
| 601 | } |
| 602 | |
| 603 | #endif |
| 604 |
nothing calls this directly
no test coverage detected