From 3e8b26ab58e7ef7457a324304306981d1ab0f528 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Thu, 7 Sep 2017 16:55:11 +0200 Subject: [PATCH] Remove unused encoding handlers These should never be sent by a server, so we don't need handlers for them. --- core/rfb.js | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/core/rfb.js b/core/rfb.js index 58fa5e43..66910c38 100644 --- a/core/rfb.js +++ b/core/rfb.js @@ -1971,7 +1971,7 @@ RFB.encodingHandlers = { return true; }, - display_tight: function (isTightPNG) { + TIGHT: function () { this._FBU.bytes = 1; // compression-control byte if (this._sock.rQwait("TIGHT compression-control", this._FBU.bytes)) { return false; } @@ -2203,11 +2203,6 @@ RFB.encodingHandlers = { "Illegal tight compression received, " + "ctl: " + ctl); - if (isTightPNG && (cmode === "filter" || cmode === "copy")) { - return this._fail("Unexpected server message", - "filter/copy received in tightPNG mode"); - } - switch (cmode) { // fill use depth because TPIXELs drop the padding byte case "fill": // TPIXEL @@ -2283,9 +2278,6 @@ RFB.encodingHandlers = { return true; }, - TIGHT: function () { return this._encHandlers.display_tight(false); }, - TIGHT_PNG: function () { return this._encHandlers.display_tight(true); }, - last_rect: function () { this._FBU.rects = 0; return true; @@ -2398,12 +2390,4 @@ RFB.encodingHandlers = { } catch (err) { } }, - - JPEG_quality_lo: function () { - Log.Error("Server sent jpeg_quality pseudo-encoding"); - }, - - compress_lo: function () { - Log.Error("Server sent compress level pseudo-encoding"); - } };