Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2022-10-18 20:33:30 +0300
committerThibault Saunier <tsaunier@igalia.com>2022-10-20 12:51:58 +0300
commit87fd49a9bf4f3058aeab39ae0f74c1a96cb4a3a7 (patch)
tree69f9b6e6816ca4c886d168225c4591607cde5ce2
parenteb9d0bb8241339f1295986eedabc82152a2c67e7 (diff)
webrtc:signalling: Remove short option for 'host' in the cli
It clashes with `--help`
-rw-r--r--net/webrtc/signalling/src/bin/server.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/webrtc/signalling/src/bin/server.rs b/net/webrtc/signalling/src/bin/server.rs
index 65f41055..29bef62a 100644
--- a/net/webrtc/signalling/src/bin/server.rs
+++ b/net/webrtc/signalling/src/bin/server.rs
@@ -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)]