Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdulsamie10/clientservertcp
This repository contains code of communication between client and server using TCP.
https://github.com/abdulsamie10/clientservertcp
c c-plus-plus c-programming client client-server client-side protocol server server-side tcp tcp-client tcp-protocol tcp-server tcp-socket
Last synced: about 8 hours ago
JSON representation
This repository contains code of communication between client and server using TCP.
- Host: GitHub
- URL: https://github.com/abdulsamie10/clientservertcp
- Owner: abdulsamie10
- Created: 2023-01-09T07:42:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-09T07:47:19.000Z (almost 2 years ago)
- Last Synced: 2024-04-28T04:56:18.156Z (6 months ago)
- Topics: c, c-plus-plus, c-programming, client, client-server, client-side, protocol, server, server-side, tcp, tcp-client, tcp-protocol, tcp-server, tcp-socket
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ClientServerTCP
This repository contains code of communication between client and server using TCP.# OS Dependency
Ubuntu/Linux# Import and Run
Firstly run server using following commnds.For compiling:
gcc -o s.out server.cFor running:
./s.out
After creating server, here comes the command for compiling and running client.For compiling:
gcc -o c.out client.cFor running:
./c.out