This file is indexed.

/usr/include/afs/packages.h is in libopenafs-dev 1.6.20-2+deb9u2.

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
/*
 * Copyright 2000, International Business Machines Corporation and others.
 * All Rights Reserved.
 *
 * This software has been released under the terms of the IBM Public
 * License.  For details, see the LICENSE file in the top-level source
 * directory or online at http://www.openafs.org/dl/license10.html
 */

/* This include file defines the error code base for each of the packages in
   AFS.  This is an informal system so people should feel free to add their own
   packages if they don't appear here. */

/* The convention is that each package is assigned a small integer.  This
   package number is shifted into the high 16 bits to for the error number base
   for that package.  As an added convention we add 1000 to this base to allow
   the space of the kernel errno numbers to "show" through.  These code will be
   the same in all packages and most packages will probably not use them. */

/* Each package is assumed to have a short two or three (or four or five)
   letter mnemonic which will be used to name external variables, procedures
   and constants.  This prefix will be used to name the constant that defines
   the minimum error code for each package.  Each package should define its own
   constant defining the maximum error code using the same conventions (eg
   KAMAXERROR). */

#ifndef ERROROFFSET

#define ERROROFFSET 1000

#define KAMINERROR    ((  1 <<16)+ERROROFFSET)	/* kerberos authentication server */
#define PRMINERROR    ((  2 <<16)+ERROROFFSET)	/* AFS protection server */
#define VLMINERROR    ((  3 <<16)+ERROROFFSET)	/* Volume Location database */
#define VSMINERROR    ((  4 <<16)+ERROROFFSET)	/* Volume Services */
#define RXMINERROR    ((  5 <<16)+ERROROFFSET)	/* Rx RPC facility */
#define RXGENMINERROR ((  6 <<16)+ERROROFFSET)	/* RxGen */
#define LWPMINERROR   ((  7 <<16)+ERROROFFSET)	/* Light Weight Process package */
#define RXKADMINERROR ((  8 <<16)+ERROROFFSET)	/* Kerberos security module for Rx */
#define CMDMINERROR   ((  9 <<16)+ERROROFFSET)	/* Command line parser utilities */
#define UMINERROR     (( 10 <<16)+ERROROFFSET)	/* Ubik replicated database */
#define VICEMINERROR  (( 11 <<16)+ERROROFFSET)	/* Vast Integrated Computing Environment */
#define BOSMINERROR   (( 12 <<16)+ERROROFFSET)	/* Bozo Operations System */
#define ESMINERROR    (( 13 <<16)+ERROROFFSET)	/* Error and Statistics logger */

#endif