https://github.com/shivajichalise/rust-tcp
https://github.com/shivajichalise/rust-tcp
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shivajichalise/rust-tcp
- Owner: shivajichalise
- License: mit
- Created: 2024-06-24T04:53:13.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-01-05T15:33:33.000Z (4 months ago)
- Last Synced: 2025-01-05T16:29:55.643Z (4 months ago)
- Language: Rust
- Size: 826 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust TCP
- Multi threaded (without thread pool) TCP Server
- Multiple Producer, Single Consumer chat server# Usage
1. Clone and cd into this project.
2. In a terminal instance run:
```rust
cargo run
```3. Open two more terminal instance and run below on both:
```rust
telnet 0.0.0.0 6969
```4. Start sending messages from the terminals from where you ran the `telnet` command.
