| 7 | namespace p2c::iact |
| 8 | { |
| 9 | ActionClient::ActionClient(const std::string& pipeName) : ClientBase{ pipeName } |
| 10 | { |
| 11 | auto res = DispatchSync(inj::act::OpenSession::Params{ |
| 12 | .kernelPid = GetCurrentProcessId() |
| 13 | }); |
| 14 | pmlog_info(std::format("Opened session with injector lib, pid = [{}]", res.injectedLibPid)); |
| 15 | EstablishSession_(res.injectedLibPid); |
| 16 | } |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected