• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

src/25-Apr-2025-308255

.cargo-checksum.jsonD25-Apr-2025404 11

Android.bpD25-Apr-20251.2 KiB4944

Cargo.tomlD25-Apr-2025871 3327

LICENSED25-Apr-20251.5 KiB2827

METADATAD25-Apr-2025433 1817

MODULE_LICENSE_BSD_LIKED25-Apr-20250

README.mdD25-Apr-2025977 2016

TEST_MAPPINGD25-Apr-202589 87

cargo_embargo.jsonD25-Apr-2025131 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