package xenstore

  1. Overview
  2. Docs
Xenstore protocol in pure OCam

Install

Dune Dependency

Authors

Maintainers

Sources

xenstore-2.4.0.tbz
sha256=11b63bb2a5a8bc487d36f36ecb195b2a2135aa13ab401cbc73da67505c08faa4
sha512=b921aa4265503677f4984007efee6865461a18031dc49583be040781307cc6cbfcd84bc11e9ebc0a23e9b0cf281bd94528c475624bc30471ad8ff70607e0732f

doc/xenstore/Xs_protocol/ACL/index.html

Module Xs_protocol.ACLSource

Access control lists.

Sourcetype perm =
  1. | NONE
  2. | READ
  3. | WRITE
  4. | RDWR
Sourceval char_of_perm : perm -> char
Sourceval perm_of_char : char -> perm option
Sourcetype domid = int
Sourcetype t = {
  1. owner : domid;
    (*

    domain which "owns", has full access

    *)
  2. other : perm;
    (*

    default permissions for all others...

    *)
  3. acl : (domid * perm) list;
    (*

    ... unless overridden in the ACL

    *)
}
Sourceval of_string : string -> t option
Sourceval to_string : t -> string
OCaml

Innovation. Community. Security.