https://github.com/li-plus/echo-server
A simple echo server using event-driven programming.
https://github.com/li-plus/echo-server
echo-server
Last synced: 20 days ago
JSON representation
A simple echo server using event-driven programming.
- Host: GitHub
- URL: https://github.com/li-plus/echo-server
- Owner: li-plus
- License: mit
- Created: 2021-03-08T13:03:03.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-08T14:07:11.000Z (about 4 years ago)
- Last Synced: 2025-02-15T23:41:57.563Z (3 months ago)
- Topics: echo-server
- Language: C
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Echo Server
A simple echo server like `nc` using event-driven programming.
## Quick Start
Compile the project
```sh
mkdir -p build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j
```Run echo server
```sh
./echo_server -p 9999
```Connect to server with `nc` in another terminal
```sh
nc localhost 9999
```