From 1a5dd77d37633803fd3006589a40cf31f0fd9687 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Wed, 11 Aug 2010 11:21:15 -0500 Subject: [PATCH] Treat RFB 3.6 as 3.3. Apparently there are versions of UltraVNC that report version 3.6. This is not a legal version according to the spec, but we'll just force version 3.3 if we receive it. Thanks to Larry Rowe for the info. --- include/rfb.js | 1 + 1 file changed, 1 insertion(+) diff --git a/include/rfb.js b/include/rfb.js index 4f6fbc96..8131f110 100644 --- a/include/rfb.js +++ b/include/rfb.js @@ -682,6 +682,7 @@ init_msg = function() { Util.Info("Server ProtocolVersion: " + sversion); switch (sversion) { case "003.003": rfb_version = 3.3; break; + case "003.006": rfb_version = 3.3; break; // UltraVNC case "003.007": rfb_version = 3.7; break; case "003.008": rfb_version = 3.8; break; default: