mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-21 01:26:28 +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
|
/// Program arguments
|
||||||
struct Args {
|
struct Args {
|
||||||
/// Address to listen on
|
/// Address to listen on
|
||||||
#[clap(short, long, default_value = "0.0.0.0")]
|
#[clap(long, default_value = "0.0.0.0")]
|
||||||
host: String,
|
host: String,
|
||||||
/// Port to listen on
|
/// Port to listen on
|
||||||
#[clap(short, long, default_value_t = 8443)]
|
#[clap(short, long, default_value_t = 8443)]
|
||||||
|
|
Loading…
Reference in a new issue