https://github.com/bstnbuck/tcp-echo-client-server
A simple way to understand sockets in C language
https://github.com/bstnbuck/tcp-echo-client-server
echo-server tcp-client-server
Last synced: 13 days ago
JSON representation
A simple way to understand sockets in C language
- Host: GitHub
- URL: https://github.com/bstnbuck/tcp-echo-client-server
- Owner: bstnbuck
- Created: 2020-02-28T10:11:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-28T19:26:52.000Z (over 5 years ago)
- Last Synced: 2025-03-25T12:14:34.875Z (3 months ago)
- Topics: echo-server, tcp-client-server
- Language: C
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TCP-Echo-Client-Server
A simple way to understand sockets in C language>**The program is already compiled and ready to use. Special thanks to Andreas Luft for co-programming!**
## Installation
There is nothing to install :D## Usage
* To start the server under Linux, the following command is sufficient
* ./server >>portnumber<<
* To start the client under Linux, the following command is sufficient
* ./client >>server-ip<< >>server-portnumber<<## Features
* The principle is that of an echo. When the client sends a text string to the server, the server receives it and sends it back originally (echo)
### Information
* The Code is self-explanatory commented