The remote port to connect to. (read/write) ``remote_host`` and ``remote_port`` are only useful for remote debugging. :getter: returns the remote port :setter: sets the remote port
(self)
| 1067 | |
| 1068 | @property |
| 1069 | def remote_port(self) -> int: |
| 1070 | """ |
| 1071 | The remote port to connect to. (read/write) |
| 1072 | |
| 1073 | ``remote_host`` and ``remote_port`` are only useful for remote debugging. |
| 1074 | |
| 1075 | :getter: returns the remote port |
| 1076 | :setter: sets the remote port |
| 1077 | """ |
| 1078 | return dbgcore.BNDebuggerGetRemotePort(self.handle) |
| 1079 | |
| 1080 | @remote_port.setter |
| 1081 | def remote_port(self, port: int) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected