package protocol-9p

  1. Overview
  2. Docs
type t = {
  1. fid : Protocol_9p_types.Fid.t;
  2. name : string;
  3. perm : Protocol_9p_types.FileMode.t;
  4. mode : Protocol_9p_types.OpenMode.t;
  5. extension : string option;
    (*

    9P2000.u: a symlink target, or a device description e.g. "b 1 2"

    *)
}

The payload of a Create message

include sig ... end
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
include Protocol_9p_s.SERIALISABLE with type t := 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.