]> source.dussan.org Git - tigervnc.git/commitdiff
Remove unused functions from server classes
authorPierre Ossman <ossman@cendio.se>
Thu, 11 Oct 2018 06:05:08 +0000 (08:05 +0200)
committerPierre Ossman <ossman@cendio.se>
Fri, 9 Nov 2018 16:16:04 +0000 (17:16 +0100)
common/rfb/VNCSConnectionST.h
common/rfb/VNCServerST.h

index 76e78a9bf5b561e62329efb3787e46d3a81171d6..d09f733ce05a86fbed31744b62bf8e56d0f7547c 100644 (file)
@@ -105,8 +105,6 @@ namespace rfb {
       updates.add_copied(dest, delta);
     }
 
-    const char* getPeerEndpoint() const {return peerEndpoint.buf;}
-
   private:
     // SConnection callbacks
 
index 4dc384d46c114fe16d0bdb20d0dfe5bf9b31563d..f4b0d3fc34116d2deeafe0fc2a4a94fc1c1d3eb9 100644 (file)
@@ -135,15 +135,6 @@ namespace rfb {
     // request to the desktop.
     void queryConnection(VNCSConnectionST* client, const char* userName);
 
-    // setBlacklist() is called to replace the VNCServerST's internal
-    // Blacklist instance with another instance.  This allows a single
-    // Blacklist to be shared by multiple VNCServerST instances.
-    void setBlacklist(Blacklist* bl) {blHosts = bl ? bl : &blacklist;}
-
-    // setKeyRemapper() replaces the VNCServerST's default key remapper.
-    // NB: A null pointer is valid here.
-    void setKeyRemapper(KeyRemapper* kr) { keyRemapper = kr; }
-
     // clientReady() is called by a VNCSConnectionST instance when the
     // client has completed the handshake and is ready for normal
     // communication.