comparison src/myVncProxy/VncProxyService.java @ 71:bf5ac06df675

modify AcceptThread
author e085711
date Thu, 28 Jul 2011 13:29:21 +0900
parents 343e0a107dfc
children 347c153f74c7
comparison
equal deleted inserted replaced
70:c92ec7258953 71:bf5ac06df675
104 fatalError("Network error: could not connect to server: " + host 104 fatalError("Network error: could not connect to server: " + host
105 + ":" + port, e); 105 + ":" + port, e);
106 }catch(Exception e){} 106 }catch(Exception e){}
107 107
108 rfbThread = new Thread(this); 108 rfbThread = new Thread(this);
109 accThread = new Thread(new acceptThread(rfb)); 109 accThread = new Thread(new AcceptThread(rfb));
110 110
111 } 111 }
112 112
113 public void start_threads(){ 113 public void start_threads(){
114 rfbThread.start(); 114 rfbThread.start();