diff src/myVncProxy/MyRfbProto.java @ 157:881e5b87ee42

merge 152
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Wed, 12 Oct 2011 02:19:51 +0900
parents b570efb0d266 fb1a62154851
children 1c0af90f7f59
line wrap: on
line diff
--- a/src/myVncProxy/MyRfbProto.java	Fri Oct 07 16:40:02 2011 +0900
+++ b/src/myVncProxy/MyRfbProto.java	Wed Oct 12 02:19:51 2011 +0900
@@ -615,6 +615,7 @@
 	 * ZRLEE compression is not context dependent, so no recompression is necessary.
 	 */
 	void readSendData(int dataLen) throws IOException, DataFormatException {
+		
 		LinkedList<ByteBuffer>bufs = new LinkedList<ByteBuffer>();
 		ByteBuffer header = ByteBuffer.allocate(16);
 		readFully(header.array(),0,16); 
@@ -675,6 +676,7 @@
 		// but it may generate too many large data. It is better to do it in each client.
 		// But we have do inflation for all input data, so we have to do it here.
 	}
+	
 
 	void newClient(AcceptThread acceptThread, final Socket newCli,
 			final OutputStream os, final InputStream is) throws IOException {