diff --git a/jarust/examples/raw_echotest.rs b/jarust/examples/raw_echotest.rs index bbaf607..ba278d6 100644 --- a/jarust/examples/raw_echotest.rs +++ b/jarust/examples/raw_echotest.rs @@ -14,7 +14,7 @@ async fn main() -> anyhow::Result<()> { .with_env_filter(EnvFilter::from_default_env().add_directive("jarust=trace".parse()?)) .init(); let config = JaConfig { - url: "ws://localhsot:8188/ws".to_string(), + url: "ws://localhost:8188/ws".to_string(), apisecret: None, server_root: "janus".to_string(), capacity: 32, diff --git a/jarust_plugins/examples/audio_bridge.rs b/jarust_plugins/examples/audio_bridge.rs index d447f5a..f4c85cb 100644 --- a/jarust_plugins/examples/audio_bridge.rs +++ b/jarust_plugins/examples/audio_bridge.rs @@ -22,7 +22,7 @@ async fn main() -> anyhow::Result<()> { let timeout = std::time::Duration::from_secs(10); let config = JaConfig { - url: "ws://localhsot:8188/ws".to_string(), + url: "ws://localhost:8188/ws".to_string(), apisecret: None, server_root: "janus".to_string(), capacity: 32, diff --git a/jarust_plugins/examples/echotest.rs b/jarust_plugins/examples/echotest.rs index 1db1b9a..22216ed 100644 --- a/jarust_plugins/examples/echotest.rs +++ b/jarust_plugins/examples/echotest.rs @@ -22,7 +22,7 @@ async fn main() -> anyhow::Result<()> { tracing_subscriber::fmt().with_env_filter(env_filter).init(); let config = JaConfig { - url: "ws://localhsot:8188/ws".to_string(), + url: "ws://localhost:8188/ws".to_string(), apisecret: None, server_root: "janus".to_string(), capacity: 32, diff --git a/jarust_plugins/examples/echotest_start_with_est.rs b/jarust_plugins/examples/echotest_start_with_est.rs index cee837f..8bc383b 100644 --- a/jarust_plugins/examples/echotest_start_with_est.rs +++ b/jarust_plugins/examples/echotest_start_with_est.rs @@ -25,7 +25,7 @@ async fn main() -> anyhow::Result<()> { tracing_subscriber::fmt().with_env_filter(env_filter).init(); let config = JaConfig { - url: "ws://localhsot:8188/ws".to_string(), + url: "ws://localhost:8188/ws".to_string(), apisecret: None, server_root: "janus".to_string(), capacity: 32, diff --git a/jarust_plugins/examples/streaming.rs b/jarust_plugins/examples/streaming.rs index 0174cf1..bc12aa0 100644 --- a/jarust_plugins/examples/streaming.rs +++ b/jarust_plugins/examples/streaming.rs @@ -21,7 +21,7 @@ async fn main() -> anyhow::Result<()> { let timeout = std::time::Duration::from_secs(10); let config = JaConfig { - url: "ws://localhsot:8188/ws".to_string(), + url: "ws://localhost:8188/ws".to_string(), apisecret: None, server_root: "janus".to_string(), capacity: 32, diff --git a/jarust_plugins/examples/video_room.rs b/jarust_plugins/examples/video_room.rs index 5c92cde..b079fad 100644 --- a/jarust_plugins/examples/video_room.rs +++ b/jarust_plugins/examples/video_room.rs @@ -24,7 +24,7 @@ async fn main() -> anyhow::Result<()> { let timeout = std::time::Duration::from_secs(10); let config = JaConfig { - url: "ws://localhsot:8188/ws".to_string(), + url: "ws://localhost:8188/ws".to_string(), apisecret: None, server_root: "janus".to_string(), capacity: 32,