Added a function to retrieve the snode cache size from libSession

pull/1035/head
Morgan Pretty 6 months ago
parent a1c3d53569
commit 2bc893982a

@ -1 +1 @@
Subproject commit f19df114e5f4f6c29112f49c0b4897d7b93b78f1
Subproject commit 10f15aeb1f9712452adf55a8d0826be6271c10e4

@ -167,6 +167,12 @@ public extension LibSession {
network_clear_cache(network)
}
static func snodeCacheSize() -> Int {
guard let network: UnsafeMutablePointer<network_object> = networkCache.wrappedValue else { return 0 }
return network_get_snode_cache_size(network)
}
static func getSwarm(swarmPublicKey: String) -> AnyPublisher<Set<Snode>, Error> {
typealias Output = Result<Set<Snode>, Error>

Loading…
Cancel
Save