• Home
Name Date Size #Lines LOC

..--

src/06-Sep-2024-308255

.cargo_vcs_info.jsonD06-Sep-2024115 66

Android.bpD06-Sep-20241.3 KiB5449

Cargo.tomlD06-Sep-2024871 3327

Cargo.toml.origD06-Sep-2024336 1714

LICENSED06-Sep-20241.5 KiB2827

METADATAD06-Sep-2024452 2019

MODULE_LICENSE_BSD_LIKED06-Sep-20240

OWNERSD06-Sep-202487 43

README.mdD06-Sep-2024977 2016

cargo_embargo.jsonD06-Sep-2024131 109

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