Home
last modified time | relevance | path

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

/webrtc/dtls/
H A DCargo.toml75 path = "examples/listen/psk/listen_psk.rs"
80 path = "examples/listen/selfsign/listen_selfsign.rs"
85 path = "examples/listen/verify/listen_verify.rs"
/webrtc/util/src/conn/
H A Dconn_udp_listener_test.rs17 let listener = Arc::new(listen("0.0.0.0:0").await?); in pipe()
72 .listen("0.0.0.0:0") in test_listener_close_unaccepted()
108 .listen("0.0.0.0:0") in test_listener_accept_filter()
165 .listen("0.0.0.0:0") in test_listener_concurrent()
H A Dconn_udp_listener.rs92 pub async fn listen<A: ToSocketAddrs>(laddr: A) -> Result<impl Listener> { in listen() function
93 ListenConfig::default().listen(laddr).await in listen()
98 pub async fn listen<A: ToSocketAddrs>(&mut self, laddr: A) -> Result<impl Listener> { in listen() method
/webrtc/dtls/examples/listen/selfsign/
H A Dlisten_selfsign.rs7 use webrtc_dtls::{config::Config, crypto::Certificate, listener::listen};
68 let listener = Arc::new(listen(host, cfg).await?); in main()
/webrtc/dtls/examples/listen/psk/
H A Dlisten_psk.rs8 use webrtc_dtls::{config::Config, listener::listen};
71 let listener = Arc::new(listen(host, cfg).await?); in main()
/webrtc/turn/src/client/
H A Dclient_test.rs28 c.listen().await?; in create_listening_test_client()
49 c.listen().await?; in create_listening_test_client_with_stun_serv()
172 client.listen().await?; in test_client_nonce_expiration()
H A Dmod.rs217 async fn listen(&self) -> Result<()> { in listen() method
590 pub async fn listen(&self) -> Result<()> { in listen() method
592 ci.listen().await in listen()
/webrtc/dtls/src/
H A Dlistener.rs18 pub async fn listen<A: 'static + ToSocketAddrs>(laddr: A, config: Config) -> Result<impl Listener> { in listen() function
47 let parent = Arc::new(lc.listen(laddr).await?); in listen()
/webrtc/dtls/examples/listen/verify/
H A Dlisten_verify.rs8 use webrtc_dtls::{config::Config, listener::listen};
80 let listener = Arc::new(listen(host, cfg).await?); in main()
/webrtc/turn/src/allocation/allocation_manager/
H A Dallocation_manager_test.rs448 client1.listen().await?; in test_get_allocations_info()
451 client2.listen().await?; in test_get_allocations_info()
454 client3.listen().await?; in test_get_allocations_info()
501 client.listen().await?; in test_get_allocations_info_bytes_count()
582 client.listen().await?; in test_alloc_close_notify()
/webrtc/turn/src/server/
H A Dserver_test.rs85 client.listen().await?; in test_server_simple()
239 client.listen().await?; in test_server_vnet_send_binding_request()
276 client.listen().await?; in test_server_vnet_echo_via_relay()
/webrtc/turn/src/auth/
H A Dauth_test.rs93 client.listen().await?; in test_new_long_term_auth_handler()
/webrtc/turn/examples/
H A Dturn_client_udp.rs96 client.listen().await?; in main()
/webrtc/ice/src/agent/
H A Dagent_gather.rs808 if let Err(err) = client.listen().await { in gather_candidates_relay()