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

https://github.com/xialeistudio/rust-echo-server

An echo server implemented by Rust. Using channel instead of shared-memory to communicate.
https://github.com/xialeistudio/rust-echo-server

Last synced: 3 months ago
JSON representation

An echo server implemented by Rust. Using channel instead of shared-memory to communicate.

Awesome Lists containing this project

README

        

# Rust Echo Server

An echo server implemented by Rust.

Using channel instead of shared-memory to communicate.

## Thread Model
+ Main Thread(1): handle events(`Connect`,`Disconnect`,`Frame`)
+ Listener Thread(1): accept new connections
+ Reader/Writer thread(2/connection): handle socket events