retach 0.8.1

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 messages;
pub mod codec;

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

#[cfg(test)]
mod tests_history_protocol;