MCPcopy Create free account
hub / github.com/Vector35/debugger / connect_and_wait

Method connect_and_wait

api/python/debuggercontroller.py:766–772  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected