This file is indexed.

/usr/include/orbit-2.0/orbit/poa/portableserver-poa-type.h is in liborbit2-dev 1:2.14.19-0.3.

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
52
#ifndef PORTABLESERVER_POA_TYPE_H
#define PORTABLESERVER_POA_TYPE_H 1

#include <orbit/poa/orbit-adaptor.h>

G_BEGIN_DECLS

#ifdef ORBIT2_INTERNAL_API

struct PortableServer_POAManager_type {
	struct ORBit_RootObject_struct    parent;

	GSList                           *poa_collection;
	PortableServer_POAManager_State   state;
	CORBA_ORB                         orb;
};

struct PortableServer_POA_type {
	struct ORBit_ObjectAdaptor_type base;

	guint16                         use_cnt;
	guint16                         life_flags;
	int                             poa_id;
	int                             next_sysid;
	char                           *name;
	CORBA_ORB                       orb;
	PortableServer_POA              parent_poa;
	PortableServer_POAManager       poa_manager;
	PortableServer_AdapterActivator the_activator;
	PortableServer_ServantManager   servant_manager;
	PortableServer_Servant          default_servant;

	GHashTable                     *oid_to_obj_map;
	CORBA_unsigned_long             next_id;

	GSList                         *held_requests;
	GHashTable                     *child_poas;

	PortableServer_ThreadPolicyValue             p_thread;
	PortableServer_LifespanPolicyValue           p_lifespan;
	PortableServer_IdUniquenessPolicyValue       p_id_uniqueness;
	PortableServer_IdAssignmentPolicyValue       p_id_assignment;
	PortableServer_ImplicitActivationPolicyValue p_implicit_activation;
	PortableServer_ServantRetentionPolicyValue   p_servant_retention;
	PortableServer_RequestProcessingPolicyValue  p_request_processing;
};

#endif /* ORBIT2_INTERNAL_API */

G_END_DECLS

#endif