Home
last modified time | relevance | path

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

/webrtc/turn/src/allocation/
H A Dallocation_manager.rs23 reservations: Arc<Mutex<HashMap<String, u16>>>, field
33 reservations: Arc::new(Mutex::new(HashMap::new())), in new()
167 let reservations = Arc::clone(&self.reservations); in create_reservation() localVariable
175 let mut reservations = reservations.lock().await; in create_reservation() localVariable
176 reservations.remove(&reservation_token2); in create_reservation()
181 let mut reservations = self.reservations.lock().await; in create_reservation() localVariable
182 reservations.insert(reservation_token, port); in create_reservation()
187 let reservations = self.reservations.lock().await; in get_reservation() localVariable
188 reservations.get(reservation_token).copied() in get_reservation()