Skip to content
Snippets Groups Projects
Commit ad7be47b authored by adfis's avatar adfis
Browse files

Fisher Homework 2 - Draft

parent 267f03dc
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ public class FisherClient { ...@@ -39,7 +39,7 @@ public class FisherClient {
OutputStream os; OutputStream os;
PrintStream ps; PrintStream ps;
String serverMessage; String serverMessage;
int clientLoopCount = 0; int clientLoopCount = 1;
try { try {
System.out.println("FisherClient creating socket..."); System.out.println("FisherClient creating socket...");
......
package MV3500Cohort2021JulySeptember.homework2.Fisher; package MV3500Cohort2021JulySeptember.homework2.Fisher;
import static com.google.common.base.CharMatcher.is;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
...@@ -51,7 +50,7 @@ public class FisherServer { ...@@ -51,7 +50,7 @@ public class FisherServer {
InputStream is; InputStream is;
InputStreamReader isr; InputStreamReader isr;
BufferedReader br; BufferedReader br;
int serverLoopCount = 0; int serverLoopCount = 1;
// Server is up and waiting (i.e. "blocked" or paused) // Server is up and waiting (i.e. "blocked" or paused)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment