From 478db34b29b72a57c29f365ea3ea8b4946bafc04 Mon Sep 17 00:00:00 2001 From: Adwin White Date: Sun, 16 Feb 2025 18:20:10 +0800 Subject: [PATCH] feat: add config option for camera --- src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.rs b/src/config.rs index ce4e89d..7e29120 100644 --- a/src/config.rs +++ b/src/config.rs @@ -2212,6 +2212,7 @@ pub mod keys { pub const OPTION_ENABLE_KEYBOARD: &str = "enable-keyboard"; pub const OPTION_ENABLE_CLIPBOARD: &str = "enable-clipboard"; pub const OPTION_ENABLE_FILE_TRANSFER: &str = "enable-file-transfer"; + pub const OPTION_ENABLE_CAMERA: &str = "enable-camera"; pub const OPTION_ENABLE_AUDIO: &str = "enable-audio"; pub const OPTION_ENABLE_TUNNEL: &str = "enable-tunnel"; pub const OPTION_ENABLE_REMOTE_RESTART: &str = "enable-remote-restart"; @@ -2362,6 +2363,7 @@ pub mod keys { OPTION_ENABLE_KEYBOARD, OPTION_ENABLE_CLIPBOARD, OPTION_ENABLE_FILE_TRANSFER, + OPTION_ENABLE_CAMERA, OPTION_ENABLE_AUDIO, OPTION_ENABLE_TUNNEL, OPTION_ENABLE_REMOTE_RESTART,