This file is indexed.

/usr/include/openwsman/cim/cim-interface.h is in libopenwsman-dev 2.4.3-0ubuntu4.

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
#ifndef CIM_INTERFACE_H_
#define CIM_INTERFACE_H_



#define DEFAULT_HTTP_CIMOM_PORT "5988"
#define CIM_NAMESPACE "root/cimv2"


struct __CimClientInfo 
{
	void *cc;
	WsContextH	cntx;
	hash_t          *namespaces;
	hash_t          *selectors;
	char*           cim_namespace;
	char*           resource_uri;
	char*           method;
	hash_t          *method_args;
	char*           requested_class;
	char* 			username;
	char* 			password;
	unsigned long   flags;
};

typedef struct __CimClientInfo CimClientInfo;

#endif