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

..--

patches/25-Apr-2025-7065

src/25-Apr-2025-4,2883,439

.cargo-checksum.jsonD25-Apr-20251.2 KiB11

Android.bpD25-Apr-20251.7 KiB7570

CONTRIBUTING.mdD25-Apr-20251.1 KiB3422

Cargo.tomlD25-Apr-2025958 3428

LICENSED25-Apr-20251.5 KiB2827

METADATAD25-Apr-2025368 1817

MODULE_LICENSE_BSD_LIKED25-Apr-20250

README.mdD25-Apr-2025977 2016

TEST_MAPPINGD25-Apr-202570 87

cargo_embargo.jsonD25-Apr-2025157 1110

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