Skip to content

Commit

Permalink
change default host to 127.0.0.1 for chat example
Browse files Browse the repository at this point in the history
  • Loading branch information
Rusty Rain committed Feb 3, 2024
1 parent a3ea275 commit 1664fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl From<Level> for log::LevelFilter {
#[command(version = "0.1.0")]
#[command(about = "An example of SFU Server", long_about = None)]
struct Cli {
#[arg(long, default_value_t = format!("0.0.0.0"))]
#[arg(long, default_value_t = format!("127.0.0.1"))]
host: String,
#[arg(short, long, default_value_t = 8080)]
signal_port: u16,
Expand Down

0 comments on commit 1664fd9

Please sign in to comment.