Home
last modified time | relevance | path

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

/webrtc/examples/examples/ice-restart/
H A DREADME.md1 # ice-restart
2 ice-restart demonstrates WebRTC.rs ICE Restart abilities.
6 ### Build ice-restart
8 cargo build --example ice-restart
11 ### Run ice-restart
13 cargo run --example ice-restart
/webrtc/examples/
H A DCargo.toml148 name = "ice-restart"
149 path = "examples/ice-restart/ice-restart.rs"
/webrtc/examples/examples/
H A DREADME.md30 - [x] [ICE Restart](ice-restart): The ice-restart demonstrates webrtc-rs ICE Restart abilities.
/webrtc/webrtc/src/ice_transport/
H A Dmod.rs201 pub(crate) async fn restart(&self) -> Result<()> { in restart() method
204 .restart( in restart()
/webrtc/ice/src/agent/
H A Dmod.rs217 if let Err(err) = agent.restart(config.local_ufrag, config.local_pwd).await { in new()
368 pub async fn restart(&self, mut ufrag: String, mut pwd: String) -> Result<()> { in restart() method
H A Dagent_test.rs1777 if let Err(err) = agent.restart("".to_owned(), "".to_owned()).await { in test_agent_restart_during_gather()
1795 if let Err(err) = agent.restart("".to_owned(), "".to_owned()).await { in test_agent_restart_when_closed()
1835 agent_a.restart("".to_owned(), "".to_owned()).await?; in test_agent_restart_one_side()
1893 agent_a.restart("".to_owned(), "".to_owned()).await?; in test_agent_restart_both_side()
1894 agent_b.restart("".to_owned(), "".to_owned()).await?; in test_agent_restart_both_side()
2051 a_agent.restart("".to_owned(), "".to_owned()).await?; in test_run_task_in_connection_state_callback()
/webrtc/webrtc/src/peer_connection/
H A Dmod.rs734 self.internal.ice_transport.restart().await?; in create_offer()
1478 self.internal.ice_transport.restart().await?; in set_remote_description()