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.
- Host: GitHub
- URL: https://github.com/ghvstcode/c-tcp
- Owner: Ghvstcode
- Created: 2022-11-01T22:03:16.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-01T22:47:46.000Z (about 3 years ago)
- Last Synced: 2025-01-26T09:28:59.627Z (12 months ago)
- Topics: c, tcp-client, tcp-ip, tcp-server
- Language: C
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.