From ae9b6edf7ccc5dedf051f784baa5e63a0cb10f2b Mon Sep 17 00:00:00 2001 From: rustdesk Date: Mon, 7 Jun 2021 08:57:26 +0800 Subject: [PATCH] comment --- src/client.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client.rs b/src/client.rs index d893614aa..e62eb19c1 100644 --- a/src/client.rs +++ b/src/client.rs @@ -318,6 +318,7 @@ impl Client { } } else { // fall back to non-secure connection in case pk mismatch + // to-do: pop up a warning dialog to let user choose if continue let mut msg_out = Message::new(); msg_out.set_public_key(PublicKey::new()); timeout(CONNECT_TIMEOUT, conn.send(&msg_out)).await??;