comparison src/main/java/jp/ac/u_ryukyu/treevnc/server/GetBroadCastProxy.java @ 38:c2f0b6907448

add doc directory
author one
date Thu, 27 Sep 2012 19:32:25 +0900
parents 406fa09ae645
children
comparison
equal deleted inserted replaced
37:1454d6fe96c1 38:c2f0b6907448
40 inputStream = new ByteArrayInputStream(recvPacket.getData()); 40 inputStream = new ByteArrayInputStream(recvPacket.getData());
41 inputStream.read(resorve); 41 inputStream.read(resorve);
42 if("who".equals(castString(resorve))){ 42 if("who".equals(castString(resorve))){
43 replyBroadCast(); 43 replyBroadCast();
44 } 44 }
45 if(stopFlag) break;
45 } 46 }
46 } catch (IOException e) { 47 } catch (IOException e) {
47 e.printStackTrace(); 48 e.printStackTrace();
48 } 49 }
49 } 50 }