diff options
Diffstat (limited to 'common/rfb/CMsgReaderV3.cxx')
-rw-r--r-- | common/rfb/CMsgReaderV3.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/rfb/CMsgReaderV3.cxx b/common/rfb/CMsgReaderV3.cxx index ebf08d32..085cc5ad 100644 --- a/common/rfb/CMsgReaderV3.cxx +++ b/common/rfb/CMsgReaderV3.cxx @@ -61,6 +61,7 @@ void CMsgReaderV3::readMsg() case msgTypeBell: readBell(); break; case msgTypeServerCutText: readServerCutText(); break; case msgTypeServerFence: readFence(); break; + case msgTypeEndOfContinuousUpdates: readEndOfContinuousUpdates(); break; default: fprintf(stderr, "unknown message type %d\n", type); @@ -166,3 +167,8 @@ void CMsgReaderV3::readFence() handler->fence(flags, len, data); } + +void CMsgReaderV3::readEndOfContinuousUpdates() +{ + handler->endOfContinuousUpdates(); +} |