This file is indexed.

/usr/lib/ocaml/lo/LO.mli is in liblo-ocaml-dev 0.1.0-1build2.

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
28
29
30
31
32
33
34
35
36
37
38
39
40
exception Error
exception Unhandled

module Address : sig
  type t

  val create : string -> int -> t
end

module Message : sig
  type timetag = int * int

  type data =
    [
      `Int32 of int
    | `Float of float
    | `String of string
    | `Blob of string
    | `Int64 of int
    | `Timetag of timetag
    | `Double of float
    | `Symbol of string
    | `Char of char
    | `Midi of string
    | `True
    | `False
    | `Nil
    | `Infinitum
    ]
end

val send : Address.t -> string -> Message.data list -> unit

module Server : sig
  type t

  val create : int -> (string -> Message.data array -> unit) -> t

  val recv : t -> unit
end