Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 583 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 583 Bytes

async-client-server-networking

This is a program that start a TCP echo server or client in async or sync mode, written in Rust.

Usage

$> ./async-client-server-networking -h

# Starts server on port 1234
$> ./async-client-server-networking server async 1234
$> ./async-client-server-networking server sync 12345

# Start client to connect
$> ./async-client-server-networking client async 1234
$> ./async-client-server-networking client sync 1234

image