]> source.dussan.org Git - tigervnc.git/commitdiff
Remove unused force protocol 3.3 code
authorPierre Ossman <ossman@cendio.se>
Mon, 1 Apr 2019 12:39:39 +0000 (14:39 +0200)
committerPierre Ossman <ossman@cendio.se>
Mon, 1 Apr 2019 12:39:39 +0000 (14:39 +0200)
common/rfb/CConnection.cxx
common/rfb/CConnection.h
java/com/tigervnc/rfb/CConnection.java

index fcad40535e1c4d67d4f26cdf6c06f0cb6cb2daad..af84226b72b4d1ff880d55990f024ffe609df069 100644 (file)
@@ -46,7 +46,7 @@ CConnection::CConnection()
     supportsLEDState(false),
     is(0), os(0), reader_(0), writer_(0),
     shared(false),
-    state_(RFBSTATE_UNINITIALISED), useProtocol3_3(false),
+    state_(RFBSTATE_UNINITIALISED),
     pendingPFChange(false), preferredEncoding(encodingTight),
     compressLevel(2), qualityLevel(-1),
     formatChange(false), encodingChange(false),
@@ -173,7 +173,7 @@ void CConnection::processVersionMsg()
     state_ = RFBSTATE_INVALID;
     throw Exception("Server gave unsupported RFB protocol version %d.%d",
                     server.majorVersion, server.minorVersion);
-  } else if (useProtocol3_3 || server.beforeVersion(3,7)) {
+  } else if (server.beforeVersion(3,7)) {
     server.setVersion(3,3);
   } else if (server.afterVersion(3,8)) {
     server.setVersion(3,8);
index 5a3ef919e81fa78929fd81e68983fd4a92e8f3fc..66a71a2439f499915ff9af0c8cdf54f33b29b680 100644 (file)
@@ -62,10 +62,6 @@ namespace rfb {
     // server upon initialisation.
     void setShared(bool s) { shared = s; }
 
-    // setProtocol3_3 configures whether or not the CConnection should
-    // only ever support protocol version 3.3
-    void setProtocol3_3(bool s) {useProtocol3_3 = s;}
-
     // setFramebuffer configures the PixelBuffer that the CConnection
     // should render all pixel data in to. Note that the CConnection
     // takes ownership of the PixelBuffer and it must not be deleted by
@@ -225,8 +221,6 @@ namespace rfb {
 
     CharArray serverName;
 
-    bool useProtocol3_3;
-
     bool pendingPFChange;
     rfb::PixelFormat pendingPF;
 
index c9b6b89a552c87b1efb1f6b723a84e283b6d0dfb..17c47521bebf7865ac5ca44bd47fbd89b2640572 100644 (file)
@@ -35,7 +35,7 @@ abstract public class CConnection extends CMsgHandler {
     super();
     csecurity = null; is = null; os = null; reader_ = null; writer_ = null;
     shared = false;
-    state_ = RFBSTATE_UNINITIALISED; useProtocol3_3 = false;
+    state_ = RFBSTATE_UNINITIALISED;
     framebuffer = null; decoder = new DecodeManager(this);
     security = new SecurityClient();
   }
@@ -54,10 +54,6 @@ abstract public class CConnection extends CMsgHandler {
   // server upon initialisation.
   public final void setShared(boolean s) { shared = s; }
 
-  // setProtocol3_3 configures whether or not the CConnection should
-  // only ever support protocol version 3.3
-  public final void setProtocol3_3(boolean s) { useProtocol3_3 = s; }
-
   // setStreams() sets the streams to be used for the connection.  These must
   // be set before initialiseProtocol() and processMsg() are called.  The
   // CSecurity object may call setStreams() again to provide alternative
@@ -161,7 +157,7 @@ abstract public class CConnection extends CMsgHandler {
       vlog.error(msg);
       state_ = RFBSTATE_INVALID;
       throw new Exception(msg);
-    } else if (useProtocol3_3 || cp.beforeVersion(3,7)) {
+    } else if (cp.beforeVersion(3,7)) {
       cp.setVersion(3,3);
     } else if (cp.afterVersion(3,8)) {
       cp.setVersion(3,8);
@@ -452,8 +448,6 @@ abstract public class CConnection extends CMsgHandler {
 
   private String serverName;
 
-  private boolean useProtocol3_3;
-
   protected ModifiablePixelBuffer framebuffer;
   private DecodeManager decoder;