aboutsummaryrefslogtreecommitdiffstats
path: root/java/com/tigervnc/rfb/CConnection.java
diff options
context:
space:
mode:
authorBrian P. Hinz <bphinz@users.sf.net>2016-08-27 17:33:04 -0400
committerBrian P. Hinz <bphinz@users.sf.net>2016-08-27 17:33:04 -0400
commitc456387fe1ed922c5bfb5daf0e780f0000cab2fb (patch)
tree269a8b95eff08344098afdf89a511ce443ec2bf1 /java/com/tigervnc/rfb/CConnection.java
parentda33c36638482d014996a3d99c90e2781304cebb (diff)
downloadtigervnc-c456387fe1ed922c5bfb5daf0e780f0000cab2fb.tar.gz
tigervnc-c456387fe1ed922c5bfb5daf0e780f0000cab2fb.zip
Make all viewer parameters static. Viewer instances are isolated from each other by spawning a completely new process for each viewer, rather than simply starting a new thread. All dialogs were redesigned to better match the look of the native viewer, and also to be more tolerant of sizing differences between platforms.
Diffstat (limited to 'java/com/tigervnc/rfb/CConnection.java')
-rw-r--r--java/com/tigervnc/rfb/CConnection.java12
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() {}