diff options
Diffstat (limited to 'java/com/tigervnc/rfb/CConnection.java')
-rw-r--r-- | java/com/tigervnc/rfb/CConnection.java | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/java/com/tigervnc/rfb/CConnection.java b/java/com/tigervnc/rfb/CConnection.java index c354868b..483d1f84 100644 --- a/java/com/tigervnc/rfb/CConnection.java +++ b/java/com/tigervnc/rfb/CConnection.java @@ -111,7 +111,7 @@ abstract public class CConnection extends CMsgHandler { int secType = Security.secTypeInvalid; List<Integer> secTypes = new ArrayList<Integer>(); - secTypes = Security.GetEnabledSecTypes(); + secTypes = security.GetEnabledSecTypes(); if (cp.isVersion(3,3)) { @@ -292,6 +292,16 @@ abstract public class CConnection extends CMsgHandler { // Ownership of the IdentityVerifier is retained by the CConnection instance. //public IdentityVerifier getIdentityVerifier() { return 0; } + public void framebufferUpdateStart() + { + super.framebufferUpdateStart(); + } + + public void framebufferUpdateEnd() + { + super.framebufferUpdateEnd(); + } + // authSuccess() is called when authentication has succeeded. public void authSuccess() {} |