Home
last modified time | relevance | path

Searched defs:turn_socket (Results 1 – 4 of 4) sorted by relevance

/webrtc/turn/src/allocation/
H A Dallocation_test.rs10 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_has_permission() localVariable
48 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_add_permission() localVariable
72 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_remove_permission() localVariable
105 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_add_channel_bind() localVariable
139 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_get_channel_by_number() localVariable
175 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_get_channel_by_addr() localVariable
207 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_remove_channel_bind() localVariable
244 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_allocation_refresh() localVariable
266 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_allocation_close() localVariable
H A Dmod.rs73 turn_socket: Arc<dyn Conn + Send + Sync>, field
340 let turn_socket = Arc::clone(&self.turn_socket); in packet_handler() localVariable
/webrtc/turn/src/allocation/allocation_manager/
H A Dallocation_manager_test.rs49 let turn_socket = UdpSocket::bind("127.0.0.1:0").await?; in test_packet_handler() localVariable
172 let turn_socket: Arc<dyn Conn + Send + Sync> = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_create_allocation_duplicate_five_tuple() localVariable
207 let turn_socket: Arc<dyn Conn + Send + Sync> = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_delete_allocation() localVariable
243 let turn_socket: Arc<dyn Conn + Send + Sync> = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_allocation_timeout() localVariable
296 let turn_socket: Arc<dyn Conn + Send + Sync> = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_manager_close() localVariable
342 let turn_socket: Arc<dyn Conn + Send + Sync> = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in test_delete_allocation_by_username() localVariable
/webrtc/turn/src/allocation/channel_bind/
H A Dchannel_bind_test.rs11 let turn_socket = Arc::new(UdpSocket::bind("0.0.0.0:0").await?); in create_channel_bind() localVariable