Home
last modified time | relevance | path

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

/webrtc/turn/src/server/
H A Dmod.rs8 allocation::{allocation_manager::*, five_tuple::FiveTuple, AllocationInfo},
63 let allocation_manager = Arc::new(Manager::new(ManagerConfig { in new() localVariable
70 allocation_manager, in new()
145 allocation_manager: Arc<Manager>, in read_loop()
157 let allocation_manager = Arc::clone(&allocation_manager); in read_loop() localVariable
163 allocation_manager in read_loop()
169 let infos = allocation_manager.get_allocations_info(five_tuples).await; in read_loop()
205 allocation_manager: Arc::clone(&allocation_manager), in read_loop()
217 let _ = allocation_manager.close().await; in read_loop()
H A Drequest.rs4 use crate::allocation::allocation_manager::*;
56 pub allocation_manager: Arc<Manager>, field
69 allocation_manager: Arc<Manager>, in new()
76 allocation_manager, in new()
309 .allocation_manager in handle_allocate_request()
473 .allocation_manager in handle_allocate_request()
520 self.allocation_manager in handle_allocate_request()
599 .allocation_manager in handle_create_permission_request()
666 .allocation_manager in handle_send_indication()
707 .allocation_manager in handle_channel_bind_request()
[all …]
/webrtc/turn/src/server/request/
H A Drequest_test.rs65 let allocation_manager = Arc::new(Manager::new(ManagerConfig { in test_allocation_lifetime_deletion_zero_lifetime() localVariable
75 let mut r = Request::new(l, socket, allocation_manager, Arc::new(TestAuthHandler {})); in test_allocation_lifetime_deletion_zero_lifetime()
88 r.allocation_manager in test_allocation_lifetime_deletion_zero_lifetime()
98 .allocation_manager in test_allocation_lifetime_deletion_zero_lifetime()
112 .allocation_manager in test_allocation_lifetime_deletion_zero_lifetime()
/webrtc/turn/src/allocation/
H A Dmod.rs4 pub mod allocation_manager; module