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

Function server_version

python/enterprise.py:208–219  ·  view source on GitHub ↗

Get the version number of the server :return: Version of the server

()

Source from the content-addressed store, hash-verified

206
207
208def server_version() -> int:
209 """
210 Get the version number of the server
211
212 :return: Version of the server
213 """
214 if not is_connected():
215 connect()
216 value = core.BNGetEnterpriseServerVersion()
217 if value == 0:
218 raise RuntimeError(last_error())
219 return value
220
221
222def server_build_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