Skip to content

Commit c88e29a

Browse files
committed
Update README.md
1 parent 3965b33 commit c88e29a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Echo Server Homework
22
==================
33

4+
Your task is to build a simple "echo" server.
5+
6+
* The server should automatically return to any client that connects exactly what it receives (it should echo all messages).
7+
* You will also write a python script that, when run, will send a message to the server and receive the reply, printing it to stdout.
8+
* Finally, you’ll do all of this so that it can be tested.
9+
410
Required Tasks:
511
---------------
612

@@ -26,7 +32,7 @@ To run the tests:
2632
Hints:
2733
-----
2834

29-
Look at `demo_client.py` and `demo_server.py`. These demonstrate basic client/server communication. You can play the short video `demo_client_server_behavior.mp4` to see an example how these two files can be called to work together.
35+
Look at `demo_client.py` and `demo_server.py`. These demonstrate basic client/server communication as shown in class. You can play the short video `demo_client_server_behavior.mp4` to see an example how these two files can be called to work together.
3036

3137
To complete the assignment in `echo_server.py` and `echo_client.py`, you'll be using MOST of the same lines of code. The main difference is that the `echo_server`:
3238

0 commit comments

Comments
 (0)