Home
last modified time | relevance | path

Searched refs:selected_pair (Results 1 – 2 of 2) sorted by relevance

/webrtc/ice/src/agent/
H A Dagent_internal.rs338 self.agent_conn.selected_pair.store(Some(p)); in set_selected_pair()
357 self.agent_conn.selected_pair.store(None); in set_selected_pair()
440 let selected_pair = self.agent_conn.selected_pair.load(); in validate_selected_pair() localVariable
441 (*selected_pair).as_ref().map_or_else( in validate_selected_pair()
443 |selected_pair| { in validate_selected_pair()
482 let selected_pair = self.agent_conn.selected_pair.load(); in check_keepalive() localVariable
483 (*selected_pair) in check_keepalive()
485 .map_or((None, None), |selected_pair| { in check_keepalive()
487 Some(selected_pair.local.clone()), in check_keepalive()
488 Some(selected_pair.remote.clone()), in check_keepalive()
[all …]
H A Dagent_transport.rs84 pub(crate) selected_pair: ArcSwapOption<CandidatePair>, field
96 selected_pair: ArcSwapOption::empty(), in new()
108 self.selected_pair.load().clone() in get_selected_pair()