An open API service indexing awesome lists of open source software.

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

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