Let CConnection intercept more callbacks
We need more callbacks for correct operation of multi-threaded
rect decoding.
diff --git a/common/rfb/CConnection.h b/common/rfb/CConnection.h
index 7f8dbea..6bc7a38 100644
--- a/common/rfb/CConnection.h
+++ b/common/rfb/CConnection.h
@@ -92,6 +92,15 @@
// Methods overridden from CMsgHandler
+ // Note: These must be called by any deriving classes
+
+ virtual void setDesktopSize(int w, int h);
+ virtual void setExtendedDesktopSize(unsigned reason, unsigned result,
+ int w, int h,
+ const ScreenSet& layout);
+
+ virtual void framebufferUpdateStart();
+ virtual void framebufferUpdateEnd();
virtual void dataRect(const Rect& r, int encoding);