Home
last modified time | relevance | path

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

/webrtc/turn/src/allocation/
H A Dallocation_manager.rs17 pub alloc_close_notify: Option<mpsc::Sender<AllocationInfo>>,
25 alloc_close_notify: Option<mpsc::Sender<AllocationInfo>>,
53 ) -> HashMap<FiveTuple, AllocationInfo> { in get_allocations_info() argument
62 AllocationInfo::new( in get_allocations_info()
H A Dmod.rs41 pub struct AllocationInfo { struct
53 impl AllocationInfo { argument
86 alloc_close_notify: Option<mpsc::Sender<AllocationInfo>>,
101 alloc_close_notify: Option<mpsc::Sender<AllocationInfo>>, in new() argument
254 .send(AllocationInfo { in close()
/webrtc/turn/src/server/
H A Dmod.rs8 allocation::{allocation_manager::*, five_tuple::FiveTuple, AllocationInfo},
115 ) -> Result<HashMap<FiveTuple, AllocationInfo>> { in get_allocations_info() argument
131 let mut info: HashMap<FiveTuple, AllocationInfo> = HashMap::new(); in get_allocations_info()
255 mpsc::Sender<HashMap<FiveTuple, AllocationInfo>>,
H A Dconfig.rs43 pub alloc_close_notify: Option<mpsc::Sender<AllocationInfo>>,
/webrtc/turn/src/allocation/allocation_manager/
H A Dallocation_manager_test.rs401 alloc_close_notify: Option<Sender<AllocationInfo>>, in create_server() argument
570 let (tx, mut rx) = mpsc::channel::<AllocationInfo>(1); in test_alloc_close_notify()