From e1ee4fa4653a733353cc58d5d94fa14a2469e9f2 Mon Sep 17 00:00:00 2001 From: runem <runem@DESKTOP-OVERHAUL> Date: Thu, 26 Aug 2021 09:19:57 -0700 Subject: [PATCH] Moved Files to individual network folder --- .../homework2/Reynolds/ReynoldsTcpExample3Client.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assignments/src/MV3500Cohort2021JulySeptember/homework2/Reynolds/ReynoldsTcpExample3Client.java b/assignments/src/MV3500Cohort2021JulySeptember/homework2/Reynolds/ReynoldsTcpExample3Client.java index 730c5ae484..349957b1fe 100644 --- a/assignments/src/MV3500Cohort2021JulySeptember/homework2/Reynolds/ReynoldsTcpExample3Client.java +++ b/assignments/src/MV3500Cohort2021JulySeptember/homework2/Reynolds/ReynoldsTcpExample3Client.java @@ -49,7 +49,7 @@ public class ReynoldsTcpExample3Client { // a connection to that IP in the form of a Socket // object; the server uses a ServerSocket to wait for // connections. - socket = new Socket(LOCALHOST, 2317); // locohost? + socket = new Socket(LOCALHOST, 2317); // locohost referenced at the top of this document // Now hook everything up (i.e. set up the streams), Java style: is = socket.getInputStream(); -- GitLab