package protocol-9p

  1. Overview
  2. Docs

Module Types.QidSource

Sourcetype flag =
  1. | Directory
    (*

    file is a directory

    *)
  2. | AppendOnly
    (*

    writes always hit the end of the file

    *)
  3. | Exclusive
    (*

    file is opened for exclusive use

    *)
  4. | Mount
    (*

    file is a mountpoint

    *)
  5. | Auth
    (*

    file is an authentication file

    *)
  6. | Temporary
    (*

    file is temporary and won't be backed up

    *)
Sourceval sexp_of_flag : flag -> Ppx_sexp_conv_lib.Sexp.t
Sourceval flag_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> flag
Sourcetype t = {
  1. flags : flag list;
  2. version : int32;
  3. id : int64;
}

The server's unique id for the file. Two files are the same if and only if the Qids are the same.

include Ppx_sexp_conv_lib.Sexpable.S with type t := t
Sourceval t_of_sexp : Sexplib0__.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0__.Sexp.t
Sourceval any : t
Sourceval is_any : t -> bool
Sourceval file : ?id:int64 -> ?version:int32 -> ?append_only:bool -> ?exclusive:bool -> ?mount:bool -> ?auth:bool -> ?temporary:bool -> ?link:bool -> unit -> t

Construct a t representing a file

Sourceval dir : ?id:int64 -> ?version:int32 -> unit -> t

Construct a t representing a directory

Sourceval sizeof : t -> int

The size of a buffer needed to hold t

Sourceval read : Cstruct.t -> (t * Cstruct.t, [ `Msg of string ]) 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.

Sourceval write : t -> Cstruct.t -> (Cstruct.t, [ `Msg of string ]) 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.

OCaml

Innovation. Community. Security.