TCP server that receives line-delimited input from client, then reverses and sends back the input line. Server supports line lengths of at least 4 GiB and can server multiple clients simultaneously. Operates on Linux OS
Use make
command to compile the server or client sides.
Server:
make -f MakeFile server
Client:
make -f MakeFile client
To run either server or client.
Server:
./server
Client:
./client
To remove the executable files:
make -f MakeFile clean
There are some other features like authentication, menu, admin are expected to be added in the future.