fixed test to use localhost

This commit is contained in:
Greg Wilkins 2011-11-09 08:13:00 +11:00
parent 29fa330a6e
commit 66ea1e819a
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ public class IOTest
Socket server;
connector = new ServerSocket(9123);
client = new Socket("192.168.1.13",connector.getLocalPort());
client = new Socket("127.0.0.1",connector.getLocalPort());
server = connector.accept();
client.setTcpNoDelay(true);
client.setSoLinger(true,0);