Revision: 4869
          http://tigervnc.svn.sourceforge.net/tigervnc/?rev=4869&view=rev
Author:   bphinz
Date:     2012-03-16 00:13:35 +0000 (Fri, 16 Mar 2012)
Log Message:
-----------
Fixes TimedOut exception during clientRedirect caused by missing callback

Modified Paths:
--------------
    trunk/java/com/tigervnc/vncviewer/CConn.java

Modified: trunk/java/com/tigervnc/vncviewer/CConn.java
===================================================================
--- trunk/java/com/tigervnc/vncviewer/CConn.java        2012-03-15 02:57:52 UTC 
(rev 4868)
+++ trunk/java/com/tigervnc/vncviewer/CConn.java        2012-03-16 00:13:35 UTC 
(rev 4869)
@@ -383,6 +383,7 @@
       sock = new TcpSocket(host, port);
       vlog.info("Redirected to "+host+":"+port);
       setStreams(sock.inStream(), sock.outStream());
+      sock.inStream().setBlockCallback(this);
       initialiseProtocol();
     } catch (java.lang.Exception e) {
       throw new Exception(e.toString());

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
Tigervnc-commits mailing list
Tigervnc-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tigervnc-commits

Reply via email to