This file is indexed.

/usr/lib/ocaml/ocamldap/ldap_error.mli is in libldap-ocaml-dev 2.1.8-9.

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
41
42
43
44
45
46
47
48
49
50
51
open Ldap_types

(** given an ldap error code return a string describing it *)
val err2string :
  [> `ADMINLIMIT_EXCEEDED
   | `ALIAS_DEREF_PROBLEM
   | `ALIAS_PROBLEM
   | `ALREADY_EXISTS
   | `AUTH_METHOD_NOT_SUPPORTED
   | `BUSY
   | `COMPARE_FALSE
   | `COMPARE_TRUE
   | `CONFIDENTIALITY_REQUIRED
   | `CONSTRAINT_VIOLATION
   | `INAPPROPRIATE_AUTH
   | `INAPPROPRIATE_MATCHING
   | `INSUFFICIENT_ACCESS
   | `INVALID_CREDENTIALS
   | `INVALID_DN_SYNTAX
   | `INVALID_SYNTAX
   | `LOCAL_ERROR
   | `LOOP_DETECT
   | `NAMING_VIOLATION
   | `NOT_ALLOWED_ON_NONLEAF
   | `NOT_ALLOWED_ON_RDN
   | `NO_OBJECT_CLASS_MODS
   | `NO_SUCH_ATTRIBUTE
   | `NO_SUCH_OBJECT
   | `OBJECT_CLASS_VIOLATION
   | `OPERATIONS_ERROR
   | `OTHER
   | `PROTOCOL_ERROR
   | `REFERRAL
   | `SASL_BIND_IN_PROGRESS
   | `SERVER_DOWN
   | `SIZELIMIT_EXCEEDED
   | `STRONG_AUTH_REQUIRED
   | `SUCCESS
   | `TIMELIMIT_EXCEEDED
   | `TYPE_OR_VALUE_EXISTS
   | `UNAVAILABLE
   | `UNAVAILABLE_CRITICAL_EXTENSION
   | `UNDEFINED_TYPE
   | `UNWILLING_TO_PERFORM ] ->
  string

(** return a string with a human readable description of an LDAP_Failure exception *)
val ldap_strerror : string -> exn -> string

(** print to stderr a string with a human readable description of an LDAP_Failure exception *)
val ldap_perror : string -> exn -> unit