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

Method remote_host

api/python/debuggercontroller.py:1053–1062  ·  view source on GitHub ↗

The remote host to connect to. (read/write) ``remote_host`` and ``remote_port`` are only useful for remote debugging. :getter: returns the remote host :setter: sets the remote host

(self)

Source from the content-addressed store, hash-verified

1051
1052 @property
1053 def remote_host(self) -> str:
1054 """
1055 The remote host to connect to. (read/write)
1056
1057 ``remote_host`` and ``remote_port`` are only useful for remote debugging.
1058
1059 :getter: returns the remote host
1060 :setter: sets the remote host
1061 """
1062 return dbgcore.BNDebuggerGetRemoteHost(self.handle)
1063
1064 @remote_host.setter
1065 def remote_host(self, host: str) -> None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected