package netchannel

  1. Overview
  2. Docs
type status =
  1. | DROPPED
  2. | ERROR
  3. | OKAY
  4. | NULL
type t = {
  1. id : int;
  2. status : status;
}
val write : t -> Cstruct.t -> unit
val read : Cstruct.t -> t