diff --git a/SingleThreaded/Client.java b/SingleThreaded/Client.java index 3c12d79..9554603 100644 --- a/SingleThreaded/Client.java +++ b/SingleThreaded/Client.java @@ -10,7 +10,7 @@ public class Client { public void run() throws UnknownHostException, IOException{ - int port = 8090; + int port = 8010; InetAddress address = InetAddress.getByName("localhost"); Socket socket = new Socket(address, port); PrintWriter toSocket = new PrintWriter(socket.getOutputStream(), true);