https://github.com/hello2mao/tcp-server-client-demo
TCP Server-Client implementation in C
https://github.com/hello2mao/tcp-server-client-demo
Last synced: about 2 months ago
JSON representation
TCP Server-Client implementation in C
- Host: GitHub
- URL: https://github.com/hello2mao/tcp-server-client-demo
- Owner: hello2mao
- License: apache-2.0
- Created: 2021-02-04T02:20:50.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-05T02:36:06.000Z (over 5 years ago)
- Last Synced: 2025-03-02T11:49:21.526Z (over 1 year ago)
- Language: C
- Size: 29.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TCP-Server-Client-Demo
TCP Server-Client implementation in C

## Usage
### Build
```bash
mkdir -p build
cd build
cmake ..
make
```
### Run
server:
```bash
./server
```
client:
```bash
./client
```