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)
| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected