This file is indexed.

/usr/lib/ocaml/obus/oBus_info.mli is in libobus-ocaml-dev 1.1.5-3build1.

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
(*
 * oBus_info.mli
 * -------------
 * Copyright : (c) 2008, Jeremie Dimino <jeremie@dimino.org>
 * Licence   : BSD3
 *
 * This file is a part of obus, an ocaml implementation of D-Bus.
 *)

(** Various informations *)

val version : string
  (** version of obus *)

val machine_uuid : OBus_uuid.t Lwt.t Lazy.t
  (** UUID of the machine we are running on *)

val protocol_version : int
  (** The version of the D-Bus protocol implemented by the library *)

val max_name_length : int
  (** Maximum length of a name (=255). This limit applies to bus
      names, interfaces, and members *)

val max_message_size : int
  (** Maximum size of a message. In this version of the protocol this
      is 2^27 bytes (128MB). *)