diff --git a/README.md b/README.md index 79b9b59..eb854ce 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # Multiple-Client-Server-Program-in-C-using-fork -A simple tcp client server application that describes the communication between the client and a server. The server is a simple echo sever that can handle multiple client using fork. +A simple tcp client server application that describes the communication between the client and a server. The server is a simple echo sever that can handle multiple clients using fork. -An echo server is a server that send back the same message that the client has send the server. -Like: +An echo server is a server that sends back the same message that the client had sent to the server, as demonstrated below. +

Demonstration: Client send - abc
-Server recv - abc +Server recv - abc
+Server send - abc
+Client recv - abc