Skip to content

Latest commit

 

History

History
6 lines (3 loc) · 433 Bytes

README.md

File metadata and controls

6 lines (3 loc) · 433 Bytes

rusty-socket-echo

This is a sample which uses tokio to create a simple client/server that speak a common protocol for echo.

Instead of a simple line protocol (repeat each line and quit when the socket closes), this projcet uses enums serialized with bincode to connect/disconnect sessions. Admittingly this is overkill for this example, but it was for learning.