retach 0.10.0

Persistent terminal sessions with native scrollback passthrough
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Length-prefixed binary protocol for client-server communication over Unix sockets.
//! Messages are serialized with bincode and framed with a 4-byte big-endian length prefix.

pub mod codec;
pub mod messages;

pub use codec::{encode, read_one_message, FrameReader};
pub use messages::{ClientMsg, ConnectMode, ServerMsg, SessionInfo, PROTOCOL_VERSION};

#[cfg(test)]
mod tests_history_protocol;