simple_comms 2.0.1

Rust implementation of a communication protocol for AH
Documentation
1
2
3
4
5
6
7
8
//! Async helpers that drive the [`crate::protocol`] wire format over a
//! `tokio` stream (TCP or Unix socket): establishing a `Noise_NK`-secured
//! connection and sending/receiving framed [`crate::protocol::message::ProtocolMessage`]s
//! on it.

pub mod driver;
pub mod send_receive;
pub mod utils;