Home
last modified time | relevance | path

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

/tools/netsim/rust/daemon/src/wifi/
Dmedium.rs81 stations: RwLock<HashMap<MacAddress, Arc<Station>>>, field
97 stations: RwLock::new(HashMap::new()), in new()
112 self.stations.write().unwrap().retain(|_, s| s.client_id != client_id); in remove()
132 fn stations(&self) -> impl Iterator<Item = Arc<Station>> { in stations() method
133 self.stations.read().unwrap().clone().into_values() in stations()
137 self.stations.read().unwrap().contains_key(addr) in contains_station()
141 self.stations.read().unwrap().get(addr).context("get station").cloned() in get_station()
193 .stations in process_internal()
254 for destination in self.stations() { in send_frame_response()
287 .stations() in send_tx_info_response()
[all …]