mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-20 17:16:39 +00:00
webrtc:signalling: Remove short option for 'host' in the cli
It clashes with `--help`
This commit is contained in:
parent
eb9d0bb824
commit
87fd49a9bf
1 changed files with 1 additions and 1 deletions
|
@ -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)]
|
||||
|
|
Loading…
Reference in a new issue