Mercurial > hg > Members > nobuyasu > tightVNCProxy
diff src/myVncProxy/VncProxyService.java @ 64:3ec4c9e94462
update myVncProxy
author | one |
---|---|
date | Mon, 25 Jul 2011 20:47:20 +0900 |
parents | 4864a7d1df00 |
children | 343e0a107dfc 6fc4272db7e2 |
line wrap: on
line diff
--- a/src/myVncProxy/VncProxyService.java Tue Jul 12 13:47:32 2011 +0900 +++ b/src/myVncProxy/VncProxyService.java Mon Jul 25 20:47:20 2011 +0900 @@ -199,7 +199,8 @@ void connectAndAuthenticate() throws Exception { acc = new acceptClient(mainArgs[0]); geth = new CreateThread(acc); - geth.start(); + Thread thread = new Thread(geth); + thread.start(); showConnectionStatus("Initializing...");