https://github.com/okelleydevelopment/tcp-echo
A Rust tcp echo server
https://github.com/okelleydevelopment/tcp-echo
Last synced: 2 months ago
JSON representation
A Rust tcp echo server
- Host: GitHub
- URL: https://github.com/okelleydevelopment/tcp-echo
- Owner: OkelleyDevelopment
- Created: 2020-12-09T04:58:49.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-09T05:39:05.000Z (over 5 years ago)
- Last Synced: 2025-03-06T12:51:57.122Z (over 1 year ago)
- Language: Rust
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TCP Echo
## Motivation
Build a TCP server with Rust that allows for multiple clients with multithreading.
## Program Compilation and Execution
Assuming Rust lang and cargo are installed:
1. Start the server in one terminal:
`cd server; cargo run `
2. Start N clients:
`cd client; cargo run
`
## Future Goals
- [] Add feature to allow communication between users
- [] Have server disconnect idle users