You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main branch has C code for sending message from Server to Client. The Caesar-ciper branch has C++/C code for sending encrypted message from Client to Server and decryting it at the server.
gcc tcp_client.c -o client
gcc tcp_server.c -o server
Run
First run the server and then the client in seperate terminal windows
./server
./client
Output
About
The main branch has C code for sending message from Server to Client. The Caesar-ciper branch has C++/C code for sending encrypted message from Client to Server and decryting it at the server.