• Home
Name Date Size #Lines LOC

..--

fuzz/03-May-2024-3422

src/03-May-2024-3,6792,975

wire_format_derive/03-May-2024-352293

Android.bpD03-May-20241.3 KiB4945

Cargo.tomlD03-May-2024283 1612

OWNERSD03-May-2024119 43

README.mdD03-May-2024977 2016

README.md

1# p9 - Server implementation of the [9p] file system protocol
2
3This directory contains the protocol definition and a server implementation of the [9p] file system
4protocol.
5
6- [wire_format_derive] - A [procedural macro] that derives the serialization and de-serialization
7  implementation for a struct into the [9p] wire format.
8- [src/protocol] - Defines all the messages used in the [9p] protocol. Also implements serialization
9  and de-serialization for some base types (integers, strings, vectors) that form the foundation of
10  all [9p] messages. Wire format implementations for all other messages are derived using the
11  `wire_format_derive` macro.
12- [src/server.rs] - Implements a full [9p] server, carrying out file system requests on behalf of
13  clients.
14
15[9p]: http://man.cat-v.org/plan_9/5/intro
16[procedural macro]: https://doc.rust-lang.org/proc_macro/index.html
17[src/protocol]: src/protocol/
18[src/server.rs]: src/server.rs
19[wire_format_derive]: wire_format_derive/
20