| 474 | |
| 475 | |
| 476 | std::string DebuggerController::GetRemoteHost() |
| 477 | { |
| 478 | char* host = BNDebuggerGetRemoteHost(m_object); |
| 479 | if (!host) |
| 480 | return ""; |
| 481 | |
| 482 | std::string result = host; |
| 483 | BNDebuggerFreeString(host); |
| 484 | return result; |
| 485 | } |
| 486 | |
| 487 | |
| 488 | uint32_t DebuggerController::GetRemotePort() |
no test coverage detected