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

Method remote_port

api/python/debuggercontroller.py:1069–1078  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected