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

Function known_remotes

rust/src/collaboration.rs:68–73  ·  view source on GitHub ↗

List of known/connected Remotes

()

Source from the content-addressed store, hash-verified

66
67/// List of known/connected Remotes
68pub fn known_remotes() -> Array<Remote> {
69 let mut count = 0;
70 let value = unsafe { BNCollaborationGetRemotes(&mut count) };
71 assert!(!value.is_null());
72 unsafe { Array::new(value, count, ()) }
73}
74
75/// Get Remote by unique `id`
76pub fn get_remote_by_id<S: BnStrCompatible>(id: S) -> Option<Ref<Remote>> {

Callers 1

selected_remoteFunction · 0.50

Calls

no outgoing calls

Tested by 1

selected_remoteFunction · 0.40