From 64071943fc8711197983cc3076ab993e142d0b47 Mon Sep 17 00:00:00 2001 From: rustdesk Date: Sun, 30 Jan 2022 21:37:46 +0800 Subject: [PATCH] change to async channel --- src/server/connection.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/connection.rs b/src/server/connection.rs index 4d90f5395..5e0078221 100644 --- a/src/server/connection.rs +++ b/src/server/connection.rs @@ -60,8 +60,8 @@ pub struct Connection { show_remote_cursor: bool, // by peer privacy_mode: bool, ip: String, - disable_clipboard: bool, // by peer - disable_audio: bool, // by peer + disable_clipboard: bool, // by peer + disable_audio: bool, // by peer tx_input: std_mpsc::Sender, // handle input messages }