diff --git a/assignments/src/MV3500Cohort2022MayJune/homework2/Duran/DuranTcpExample3Client.java b/assignments/src/MV3500Cohort2022MayJune/homework2/Duran/DuranTcpExample3Client.java index bea70ccbb25a7af6cf93fc7c131e8efd309c3a50..a6acefb9a2bc0987c1b3f2935dd82584c31bc2d7 100644 --- a/assignments/src/MV3500Cohort2022MayJune/homework2/Duran/DuranTcpExample3Client.java +++ b/assignments/src/MV3500Cohort2022MayJune/homework2/Duran/DuranTcpExample3Client.java @@ -3,10 +3,7 @@ import MV3500Cohort2021JulySeptember.homework2.Domonique.*; import java.io.*; import java.net.*; -/** - * Hey why not say what this thing does... - * @author Dom Hittner - */ + public class DuranTcpExample3Client { /** IPv6 String constant for localhost address, similarly IPv4 127.0.0.1 diff --git a/assignments/src/MV3500Cohort2022MayJune/homework2/Duran/DuranTcpExampleServer.java b/assignments/src/MV3500Cohort2022MayJune/homework2/Duran/DuranTcpExampleServer.java index a95674e9a00056705622079a93e7a488d74456b2..1120aac11e135f405740aab101753a8d2cec0897 100644 --- a/assignments/src/MV3500Cohort2022MayJune/homework2/Duran/DuranTcpExampleServer.java +++ b/assignments/src/MV3500Cohort2022MayJune/homework2/Duran/DuranTcpExampleServer.java @@ -4,10 +4,7 @@ import MV3500Cohort2021JulySeptember.homework2.Domonique.*; import java.io.*; import java.net.*; -/** - * homework assignment - * @author Dom Hittner - */ + public class DuranTcpExampleServer { /** @@ -44,7 +41,7 @@ public class DuranTcpExampleServer { // Now hook everything up (i.e. set up the streams), Java style: os = clientConnectionSocket.getOutputStream(); ps = new PrintStream(os); - ps.println("okay " + serverLoopCount + " let's go to Starbucks"); // this gets sent back to client! + ps.println("now " + serverLoopCount + " i am connected"); // this gets sent back to client! // Print some information locally about the Socket connection. // This includes the port and IP numbers on both sides (the socket pair). diff --git a/assignments/src/MV3500Cohort2022MayJune/homework2/Marks/MarksTcpExample3Client.java b/assignments/src/MV3500Cohort2022MayJune/homework2/Marks/MarksTcpExample3Client.java index 9784300f844ef6f8480fb7a6e7b275e29abb07e3..9ca8e9713763e9d24feaf29b22b59cf0850cceb4 100644 --- a/assignments/src/MV3500Cohort2022MayJune/homework2/Marks/MarksTcpExample3Client.java +++ b/assignments/src/MV3500Cohort2022MayJune/homework2/Marks/MarksTcpExample3Client.java @@ -4,10 +4,7 @@ import MV3500Cohort2021JulySeptember.homework2.Domonique.*; import java.io.*; import java.net.*; -/** - * Hey why not say what this thing does... - * @author Dom Hittner - */ + public class MarksTcpExample3Client { /** IPv6 String constant for localhost address, similarly IPv4 127.0.0.1 diff --git a/assignments/src/MV3500Cohort2022MayJune/homework2/Marks/MarksTcpExampleServer.java b/assignments/src/MV3500Cohort2022MayJune/homework2/Marks/MarksTcpExampleServer.java index 50fb7de55bac6d7cd624b834668f00c34bf6f08f..2d15f1c8ea35205418227113d29d15018d0ee036 100644 --- a/assignments/src/MV3500Cohort2022MayJune/homework2/Marks/MarksTcpExampleServer.java +++ b/assignments/src/MV3500Cohort2022MayJune/homework2/Marks/MarksTcpExampleServer.java @@ -5,10 +5,7 @@ import MV3500Cohort2021JulySeptember.homework2.Domonique.*; import java.io.*; import java.net.*; -/** - * homework assignment - * @author Dom Hittner - */ + public class MarksTcpExampleServer { /**