An open API service indexing awesome lists of open source software.

https://github.com/nikhilroxtomar/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.
https://github.com/nikhilroxtomar/multiple-client-server-program-in-c-using-fork

echo fork network-programming socket socket-programming

Last synced: 2 months ago
JSON representation

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.

Awesome Lists containing this project

README

        

# 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.

An echo server is a server that send back the same message that the client has send the server.
Like:

Client send - abc

Server recv - abc