rework public address detection timing

This commit is contained in:
Christien Rioux
2023-09-30 22:42:06 -04:00
parent c357a7499e
commit f59c4509ea
3 changed files with 23 additions and 5 deletions

View File

@@ -71,12 +71,14 @@ pub type SerializedBucketMap = BTreeMap<CryptoKind, SerializedBuckets>;
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct RoutingTableHealth {
/// Number of reliable (responsive) entries in the routing table
/// Number of reliable (long-term responsive) entries in the routing table
pub reliable_entry_count: usize,
/// Number of unreliable (occasionally unresponsive) entries in the routing table
pub unreliable_entry_count: usize,
/// Number of dead (always unresponsive) entries in the routing table
pub dead_entry_count: usize,
/// Number of live (responsive) entries in the routing table per RoutingDomain and CryptoKind
pub live_entry_counts: BTreeMap<(RoutingDomain, CryptoKind), usize>,
/// If PublicInternet network class is valid yet
pub public_internet_ready: bool,
/// If LocalNetwork network class is valid yet

View File

@@ -925,10 +925,13 @@ impl RoutingTableInner {
NetworkClass::Invalid
);
let live_entry_counts = self.cached_entry_counts();
RoutingTableHealth {
reliable_entry_count,
unreliable_entry_count,
dead_entry_count,
live_entry_counts,
public_internet_ready,
local_network_ready,
}