This file is indexed.

/usr/include/icinm.h is in libion-dev 3.2.1+dfsg-1.

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
/*
	Private header file for ICI network management instrumentation 
	routines
									*/
/*									*/
/*	Copyright (c) 1997, California Institute of Technology.		*/
/*	ALL RIGHTS RESERVED.  U.S. Government Sponsorship		*/
/*	acknowledged.							*/
/*	Author: Scott Burleigh, Jet Propulsion Laboratory		*/
/*	Adapted by Vinny Ramachandran, JHU//APL		*/
/*									*/
#ifndef _ICINM_H_
#define _ICINM_H_

#include "ion.h"
 
typedef struct
{
	   unsigned int    smallPoolSize;
	   unsigned int    smallPoolFree;
	   unsigned int    smallPoolAllocated;
	   unsigned int    largePoolSize;
	   unsigned int    largePoolFree;
	   unsigned int    largePoolAllocated;
	   unsigned int    unusedSize;
} SdrnmState;
               
extern 	void sdrnm_state_get(SdrnmState *state);

#endif  /* _ICINM_H_ */