protocol-9p
An implementation of the 9P protocol in pure OCaml
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Library protocol_9p
type t = {
fid : Protocol_9p__Protocol_9p_types.Fid.t; | |
afid : Protocol_9p__Protocol_9p_types.Fid.t; | |
uname : string; | |
aname : string; | |
n_uname : int32 option; | (* Numeric userid supported by 9P2000.u *) |
}
The payload of an attach message
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
val sizeof : t -> int
The size of a buffer needed to hold t
val read : Cstruct.t -> ( t * Cstruct.t, [ `Msg of string ] ) Result.result
Read a t
from the given buffer and return it, along with the unused remainder of the buffer. If the buffer cannot be parsed then return an error.
val write : t -> Cstruct.t -> ( Cstruct.t, [ `Msg of string ] ) Result.result
Write a t
into the given buffer. If the buffer is too small, then return an error. Return the unused remainder of the buffer.