MCPcopy Create free account
hub / github.com/LUX-Core/lux / GetSendResult

Method GetSendResult

src/cryptopp/socketft.cpp:591–601  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

589}
590
591unsigned 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

Callers

nothing calls this directly

Calls 1

CheckAndHandleErrorMethod · 0.45

Tested by

no test coverage detected