po-session 0.1.0

Session management, handshake state machine, and framing for Protocol Orzatty
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Session management for Protocol Orzatty connections.

pub mod channel;
pub mod framer;
pub mod handshake;
pub mod message;
pub mod state;

pub use framer::Framer;
pub use handshake::perform_handshake_initiator;
pub use handshake::perform_handshake_responder;
pub use message::ProtocolMessage;
pub use state::{Session, SessionState};