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.
- Host: GitHub
- URL: https://github.com/nikhilroxtomar/multiple-client-server-program-in-c-using-fork
- Owner: nikhilroxtomar
- Created: 2017-12-18T12:06:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-20T09:17:45.000Z (about 2 years ago)
- Last Synced: 2025-03-28T08:11:24.959Z (3 months ago)
- Topics: echo, fork, network-programming, socket, socket-programming
- Language: C
- Homepage: https://idiotdeveloper.com
- Size: 6.84 KB
- Stars: 98
- Watchers: 4
- Forks: 75
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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