package xenstore_transport

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

Module Xs_transport_unix_clientSource

A byte-level transport over the xenstore Unix domain socket

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