1use crate::PeerGroup; 2 3impl PeerGroup { 4 #[must_use] 5 pub fn get_rtt_cap_ms(&self) -> u64 { 6 self.read().config.rtt_cap_ms 7 } 8}