webrtc:signalling: Remove short option for 'host' in the cli

It clashes with `--help`
This commit is contained in:
Thibault Saunier 2022-10-18 19:33:30 +02:00
parent eb9d0bb824
commit 87fd49a9bf

View file

@ -15,7 +15,7 @@ use tracing::{info, warn};
/// Program arguments
struct Args {
/// Address to listen on
#[clap(short, long, default_value = "0.0.0.0")]
#[clap(long, default_value = "0.0.0.0")]
host: String,
/// Port to listen on
#[clap(short, long, default_value_t = 8443)]