ninep-proto 0.2.0

9P2000.L wire protocol types (shared by the ZeroFS 9P server and client)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 9P2000.L wire-protocol types, Deku-(de)serialized.
//!
//! Shared by the ZeroFS 9P server and the `ninep-client` crate so both sides
//! speak the exact same messages. Includes the ZeroFS-private `Trebind`/`Rrebind`
//! reconnect extension.

mod deku_bytes;
mod lock_range;
mod protocol;
pub mod retry;

pub use deku_bytes::*;
pub use lock_range::*;
pub use protocol::*;