diff options
Diffstat (limited to 'common/rfb')
-rw-r--r-- | common/rfb/VNCServerST.cxx | 10 | ||||
-rw-r--r-- | common/rfb/VNCServerST.h | 6 |
2 files changed, 0 insertions, 16 deletions
diff --git a/common/rfb/VNCServerST.cxx b/common/rfb/VNCServerST.cxx index c6734458..40580b16 100644 --- a/common/rfb/VNCServerST.cxx +++ b/common/rfb/VNCServerST.cxx @@ -224,16 +224,6 @@ void VNCServerST::processSocketWriteEvent(network::Socket* sock) throw rdr::Exception("invalid Socket in VNCServerST"); } -int VNCServerST::checkTimeouts() -{ - int timeout = 0; - - soonestTimeout(&timeout, Timer::checkTimeouts()); - - return timeout; -} - - // VNCServer methods void VNCServerST::blockUpdates() diff --git a/common/rfb/VNCServerST.h b/common/rfb/VNCServerST.h index a994c942..43a3bb95 100644 --- a/common/rfb/VNCServerST.h +++ b/common/rfb/VNCServerST.h @@ -76,12 +76,6 @@ namespace rfb { // Flush pending data from the Socket on to the network. virtual void processSocketWriteEvent(network::Socket* sock); - // checkTimeouts - // Returns the number of milliseconds left until the next idle timeout - // expires. If any have already expired, the corresponding connections - // are closed. Zero is returned if there is no idle timeout. - virtual int checkTimeouts(); - // Methods overridden from VNCServer |