This file is indexed.

/usr/lib/ocaml/rpc/rpc_util.mli is in libocamlnet-ocaml-dev 3.7.3-3build2.

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
(* $Id: rpc_util.mli 1445 2010-04-27 15:51:50Z gerd $ *)

(** Utility functions *)

type verbosity =
    [ `Name_only | `Name_abbrev_args | `Name_full_args ]
   (** How verbose the RPC ftrace is:
        - [`Name_only]: For each RPC call only the name is logged
        - [`Name_abbrev_args]: The name and the abbreviated argument list
          are logged
        - [`Name_full_args]: The name and the full argument list are logged
    *)

val string_of_request : 
      verbosity -> Rpc_program.t -> string -> Xdr.xdr_value -> string
   (** Return the string representation of this call request *)

val string_of_response :
      verbosity -> Rpc_program.t -> string -> Xdr.xdr_value -> string
   (** Return the string representation of this call response *)

val string_of_value :
      Xdr.xdr_type_term -> Xdr.xdr_value -> string
   (** Return a string representation of the value which must have the
       passed type
    *)

val hex_dump_m :
      Netsys_mem.memory -> int -> int -> string
val hex_dump_s :
      string -> int -> int -> string
   (** Format the contents as hex sequence *)