Home
last modified time | relevance | path

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

/webrtc/util/src/vnet/
H A Dnat.rs243 let i_key = format!("udp:{}", m.mapped); in translate_outbound() localVariable
249 i_key in translate_outbound()
266 inbound_map.insert(i_key, Arc::new(m)); in translate_outbound()
319 let i_key = format!("udp:{}", from.destination_addr()); in translate_inbound() localVariable
320 if let Some(m) = self.find_inbound_mapping(&i_key).await { in translate_inbound()
407 pub(crate) async fn find_inbound_mapping(&self, i_key: &str) -> Option<Arc<Mapping>> { in find_inbound_mapping()
411 if let Some(m) = inbound_map.get(i_key) { in find_inbound_mapping()
442 inbound_map.get(i_key).map(Arc::clone) in find_inbound_mapping()