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

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

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