| 69 | } |
| 70 | |
| 71 | int SocketReader::CompleteReceive() |
| 72 | { |
| 73 | assert(m_busy); |
| 74 | DWORD flags = 0; |
| 75 | auto count = Win32::WSAGetOverlappedResult(m_socket, m_overlapped, false, flags); |
| 76 | m_busy = false; |
| 77 | return count; |
| 78 | } |
| 79 | |
| 80 | std::string SocketReader::GetProcessText() const |
| 81 | { |
nothing calls this directly
no test coverage detected