package xenstore_transport

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Xs_transport_lwt_unix_clientSource

A byte-level transport over the xenstore Unix domain socket

Sourceval create : unit -> Lwt_unix.file_descr Lwt.t
Sourceval destroy : Lwt_unix.file_descr -> unit Lwt.t
Sourceval read : Lwt_unix.file_descr -> bytes -> int -> int -> int Lwt.t
Sourceval write : Lwt_unix.file_descr -> bytes -> int -> int -> unit Lwt.t
Sourcetype 'a t = 'a Lwt.t
Sourceval return : 'a -> 'a Lwt.t
Sourceval (>>=) : 'a Lwt.t -> ('a -> 'b Lwt.t) -> 'b Lwt.t
Sourcetype backend = [
  1. | `unix
  2. | `xen
]
Sourceval backend : [> `unix ]