Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 626 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 626 Bytes

SOLITUDE (WIP)

i2p SAMv3 library written in Rust for use in the EVA project.

Examples

Datagram Server

Creates a datagram service that logs whatever is sent to it.

cargo run --example datagram_server

Datagram client

Sends a datagram with the payload "Hello World! "to the supplied server

cargo run --example datagram_client <server_name>

Stream Server

Creates a Stream style server that logs whatever is sent to it.

cargo run --example stream_server

Stream Client

Sends "Hello World!" to the supplied server

cargo run --example stream_client <server_name>