diff src/myVncProxy/MyRfbProto.java @ 158:1c0af90f7f59

modify AcceptClient, MyRfbProto
author e085711
date Wed, 12 Oct 2011 02:24:36 +0900
parents 881e5b87ee42
children 13458f88d8c9
line wrap: on
line diff
--- a/src/myVncProxy/MyRfbProto.java	Wed Oct 12 02:19:51 2011 +0900
+++ b/src/myVncProxy/MyRfbProto.java	Wed Oct 12 02:24:36 2011 +0900
@@ -615,7 +615,6 @@
 	 * 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); 
@@ -676,7 +675,6 @@
 		// 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 {