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

Function server_name

python/enterprise.py:180–191  ·  view source on GitHub ↗

Get the display name of the server :return: Display name of the server

()

Source from the content-addressed store, hash-verified

178
179
180def server_name() -> str:
181 """
182 Get the display name of the server
183
184 :return: Display name of the server
185 """
186 if not is_connected():
187 connect()
188 value = core.BNGetEnterpriseServerName()
189 if value is None:
190 raise RuntimeError(last_error())
191 return value
192
193
194def server_id() -> str:

Callers

nothing calls this directly

Calls 3

is_connectedFunction · 0.85
connectFunction · 0.85
last_errorFunction · 0.85

Tested by

no test coverage detected