diff options
author | Pierre Ossman <ossman@cendio.se> | 2018-10-11 08:05:08 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2018-11-09 17:16:04 +0100 |
commit | 9f752b7446ffcaa86eeb0417e3b93701aacbb796 (patch) | |
tree | 631438cbc39ab10d27e12103a25a28a2744b21ac /common | |
parent | 2ebed0d70dedcc7ab42071fe751f69245e46913f (diff) | |
download | tigervnc-9f752b7446ffcaa86eeb0417e3b93701aacbb796.tar.gz tigervnc-9f752b7446ffcaa86eeb0417e3b93701aacbb796.zip |
Remove unused functions from server classes
Diffstat (limited to 'common')
-rw-r--r-- | common/rfb/VNCSConnectionST.h | 2 | ||||
-rw-r--r-- | common/rfb/VNCServerST.h | 9 |
2 files changed, 0 insertions, 11 deletions
diff --git a/common/rfb/VNCSConnectionST.h b/common/rfb/VNCSConnectionST.h index 76e78a9b..d09f733c 100644 --- a/common/rfb/VNCSConnectionST.h +++ b/common/rfb/VNCSConnectionST.h @@ -105,8 +105,6 @@ namespace rfb { updates.add_copied(dest, delta); } - const char* getPeerEndpoint() const {return peerEndpoint.buf;} - private: // SConnection callbacks diff --git a/common/rfb/VNCServerST.h b/common/rfb/VNCServerST.h index 4dc384d4..f4b0d3fc 100644 --- a/common/rfb/VNCServerST.h +++ b/common/rfb/VNCServerST.h @@ -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. |