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

Function enterprise_remote

python/collaboration/__init__.py:66–75  ·  view source on GitHub ↗

Get whichever known Remote has the same address as the Enterprise license server :return: Relevant known Remote, or None if one is not found

()

Source from the content-addressed store, hash-verified

64
65
66def enterprise_remote() -> Optional['Remote']:
67 """
68 Get whichever known Remote has the same address as the Enterprise license server
69
70 :return: Relevant known Remote, or None if one is not found
71 """
72 for remote in known_remotes():
73 if remote.is_enterprise:
74 return remote
75 return None
76
77
78def create_remote(name: str, address: str) -> 'Remote':

Callers

nothing calls this directly

Calls 1

known_remotesFunction · 0.70

Tested by

no test coverage detected