Connect to a remote target (process) The host and port of the remote target must first be specified by setting `remote_host` and `remote_port`
(self)
| 756 | dbgcore.BNDebuggerQuitAndWait(self.handle) |
| 757 | |
| 758 | def connect(self) -> bool: |
| 759 | """ |
| 760 | Connect to a remote target (process) |
| 761 | |
| 762 | The host and port of the remote target must first be specified by setting `remote_host` and `remote_port` |
| 763 | """ |
| 764 | return dbgcore.BNDebuggerConnect(self.handle) |
| 765 | |
| 766 | def connect_and_wait(self) -> bool: |
| 767 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected