This file is indexed.

/usr/include/dpm/Cns_struct.h is in libdpm-dev 1.8.10-1build3.

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
/*
 * $Id: Cns_struct.h 3723 2010-08-04 08:01:45Z baud $
 */

/*
 * Copyright (C) 2003-2007 by CERN/IT/ADC/CA
 * All rights reserved
 */

/*
 * @(#)$RCSfile: Cns_struct.h,v $ $Revision: 3723 $ $Date: 2010-08-04 10:01:45 +0200 (Wed, 04 Aug 2010) $ CERN IT-ADC/CA Jean-Philippe Baud
 */

#ifndef _CNS_STRUCT_H
#define _CNS_STRUCT_H

			/* structures common to Name server client and server */

struct Cns_acl {
	unsigned char	a_type;
	int		a_id;
	unsigned char	a_perm;
};

struct Cns_groupinfo {
	gid_t		gid;
	char		groupname[256];
	int		banned;
};

struct Cns_userinfo {
	uid_t		userid;
	char		username[256];
	char		user_ca[256];
	int		banned;
};
#endif