MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / WSAGetOverlappedResult

Function WSAGetOverlappedResult

Win32Lib/Socket.cpp:69–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69DWORD WSAGetOverlappedResult(Socket& s, WSAOVERLAPPED& overlapped, bool wait, DWORD& flags)
70{
71 DWORD count;
72 if (!::WSAGetOverlappedResult(s.get(), &overlapped, &count, wait, &flags))
73 Win32::WSAThrowLastError("WSAGetOverlappedResult");
74 return count;
75}
76
77} // namespace Win32
78} // namespace fusion

Callers 1

CompleteReceiveMethod · 0.85

Calls 1

WSAThrowLastErrorFunction · 0.70

Tested by

no test coverage detected