Log fullrender messages to commandsender, versus just log

This commit is contained in:
Mike Primm 2011-06-16 01:58:12 -05:00
parent 0b7bd72231
commit fa33977469
3 changed files with 14 additions and 11 deletions

View file

@ -121,6 +121,7 @@ public class HttpServerConnection extends Thread {
if (socket == null)
return;
socket.setSoTimeout(5000);
socket.setTcpNoDelay(true);
InetSocketAddress rmtaddr = (InetSocketAddress)socket.getRemoteSocketAddress(); /* Get remote address */
InputStream in = socket.getInputStream();
BufferedOutputStream out = new BufferedOutputStream(socket.getOutputStream(), 40960);