Expand description
Async length-prefixed rkyv framing for daemon IPC.
Wire format per frame:
u16 LE proto_version
u32 LE payload_length (<= MAX_FRAME_BYTES)
[u8] rkyv-archived FrameThe version is checked before deserialization so mismatched daemons and clients fail with a clear error rather than rkyv validation noise.
Constants§
Functions§
- read_
frame - Read one length-prefixed rkyv-archived
Framefromr. - write_
frame