Connect to a remote target (process) and wait for all debugger events to be processed The host and port of the remote target must first be specified by setting `remote_host` and `remote_port`
(self)
| 764 | return dbgcore.BNDebuggerConnect(self.handle) |
| 765 | |
| 766 | def connect_and_wait(self) -> bool: |
| 767 | """ |
| 768 | Connect to a remote target (process) and wait for all debugger events to be processed |
| 769 | |
| 770 | The host and port of the remote target must first be specified by setting `remote_host` and `remote_port` |
| 771 | """ |
| 772 | return dbgcore.BNDebuggerConnectAndWait(self.handle) |
| 773 | |
| 774 | def connect_to_debug_server(self) -> bool: |
| 775 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected