mirage-channel-lwtversion

Buffered channels for MirageOS FLOW types

Channels are buffered reader/writers built on top of unbuffered FLOW implementations.

Example:

module Channel = Channel.Make(Flow)
...
Channel.read_exactly ~len:16 t
>>= fun bufs -> (* read header of message *)
let payload_length = Cstruct.(LE.get_uint16 (concat bufs) 0) in
Channel.read_exactly ~len:payload_length t
>>= fun bufs -> (* payload of message *)

(* process message *)

Channel.write_buffer t header;
Channel.write_buffer t payload;
Channel.flush t
>>= fun () ->

mirage-channel is distributed under the ISC license.

Tags org:mirage
AuthorsAnil Madhavapeddy, Mindy Preston and Thomas Gazagnaire
LicenseISC
Published
Homepagehttps://github.com/mirage/mirage-channel
Issue Trackerhttps://github.com/mirage/mirage-channel/issues
MaintainerAnil Madhavapeddy <anil@recoil.org>
Dependencies
Conflicts
Source [http] https://github.com/mirage/mirage-channel/releases/download/v3.1.0/mirage-channel-3.1.0.tbz
md5=942d02ee627c0bae75ce5e7e16c1153e
Edithttps://github.com/ocaml/opam-repository/tree/master/packages/mirage-channel-lwt/mirage-channel-lwt.3.1.0/opam
Required by