| 19 | const std::string SysinternalsDebugViewAgentPort = "2020"; |
| 20 | |
| 21 | DbgviewReader::DbgviewReader(Timer& timer, ILineBuffer& linebuffer, const std::string& hostname) |
| 22 | : PolledLogSource(timer, SourceType::Pipe, linebuffer, 40) |
| 23 | , m_hostname(hostname) |
| 24 | , m_thread([this] { Loop(); }) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | std::vector<unsigned char> Read(std::stringstream& is, size_t amount) |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected