From 7d637a502d2ca0d7f32307da9ae5f26679bcf432 Mon Sep 17 00:00:00 2001 From: morg Date: Fri, 27 Oct 2023 17:59:41 +0200 Subject: [PATCH] Add help entry for --server-port option missing --- cli.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cli.cpp b/cli.cpp index ad3e2705..3dced0fa 100644 --- a/cli.cpp +++ b/cli.cpp @@ -385,6 +385,7 @@ void OptionHelp() help_text += "--startminimized Starts the GUI minimized to tray. Implies --gui, even if not specified\n"; help_text += "--client [IP]:[Port] Starts an SDK client on the given IP:Port (assumes port 6742 if not specified)\n"; help_text += "--server Starts the SDK's server\n"; + help_text += "--server-host Sets the SDK's server host. Default: 0.0.0.0 (all network interfaces)\n"; help_text += "--server-port Sets the SDK's server port. Default: 6742 (1024-65535)\n"; help_text += "-l, --list-devices Lists every compatible device with their number\n"; help_text += "-d, --device [0-9 | \"name\"] Selects device to apply colors and/or effect to, or applies to all devices if omitted\n";