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

https://github.com/ghvstcode/c-tcp

Basic TCP client-server pair implemented in C.
https://github.com/ghvstcode/c-tcp

c tcp-client tcp-ip tcp-server

Last synced: 10 months ago
JSON representation

Basic TCP client-server pair implemented in C.

Awesome Lists containing this project

README

          

# C-TCP
This is a basic TCP client-server pair implementation written in C.

## How To Run?
* Compile the client & server binaries seprately
* Provide a port number(preferably greater than 1024) as an argument and execute the server
* Execute the client binary with the same port the server is running on to establish a connection.
* Voila🎉, You should observe a connection is made and a message is being received.