From: Pierre Ossman Date: Tue, 29 Dec 2015 14:02:11 +0000 (+0100) Subject: Add workaround for Vino's VeNCrypt implementation X-Git-Tag: v1.6.90~73 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1f8aba3;p=tigervnc.git Add workaround for Vino's VeNCrypt implementation --- diff --git a/common/rfb/Security.cxx b/common/rfb/Security.cxx index e623ab54..0666041c 100644 --- a/common/rfb/Security.cxx +++ b/common/rfb/Security.cxx @@ -74,7 +74,18 @@ const std::list Security::GetEnabledSecTypes(void) list result; list::iterator i; - result.push_back(secTypeVeNCrypt); + /* Partial workaround for Vino's stupid behaviour. It doesn't allow + * the basic authentication types as part of the VeNCrypt handshake, + * making it impossible for a client to do opportunistic encryption. + * At least make it possible to connect when encryption is explicitly + * disabled. */ + for (i = enabledSecTypes.begin(); i != enabledSecTypes.end(); i++) { + if (*i >= 0x100) { + result.push_back(secTypeVeNCrypt); + break; + } + } + for (i = enabledSecTypes.begin(); i != enabledSecTypes.end(); i++) if (*i < 0x100) result.push_back(*i);