Skip to main content

po_session/
lib.rs

1//! Session management for Protocol Orzatty connections.
2
3pub mod channel;
4pub mod framer;
5pub mod handshake;
6pub mod message;
7pub mod state;
8
9pub use framer::Framer;
10pub use handshake::perform_handshake_initiator;
11pub use handshake::perform_handshake_responder;
12pub use message::ProtocolMessage;
13pub use state::{Session, SessionState};