MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / known_remotes

Function known_remotes

python/collaboration/__init__.py:51–63  ·  view source on GitHub ↗

List of known/connected Remotes :return: All known remotes

()

Source from the content-addressed store, hash-verified

49
50
51def known_remotes() -> List['Remote']:
52 """
53 List of known/connected Remotes
54
55 :return: All known remotes
56 """
57 binaryninja._init_plugins()
58 count = ctypes.c_size_t()
59 value = core.BNCollaborationGetRemotes(count)
60 result = []
61 for i in range(count.value):
62 result.append(Remote(handle=value[i]))
63 return result
64
65
66def enterprise_remote() -> Optional['Remote']:

Callers 1

enterprise_remoteFunction · 0.70

Calls 2

RemoteClass · 0.70
appendMethod · 0.45

Tested by

no test coverage detected