/usr/lib/ocaml/netplex/netplex_container.mli is in libocamlnet-ocaml-dev 4.0.4-1build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | (* $Id: netplex_container.mli 1256 2009-08-09 19:25:49Z gerd $ *)
(** Containers
*
* The container is the management object for the concurrently running
* service processor.
*)
open Netplex_types
val create_container :
parallelization_type -> socket_service -> container
(** The container for normal services *)
val create_admin_container :
Unixqueue.unix_event_system -> parallelization_type -> socket_service -> container
(** {b Internally used.} The container for the special admin service *)
module Debug : sig
val enable : bool ref
(** Enables debug logging of containers *)
end
(**/**)
(* internal stuff: *)
val string_of_event : Netplex_ctrl_aux.event -> string
|