This file is indexed.

/usr/share/idl/omniORB/poa.idl is in omniorb-idl 4.1.6-2.

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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#ifndef __PORTABLESERVER_POA_IDL__
#define __PORTABLESERVER_POA_IDL__


#include <poa_include.idl>


#pragma prefix "omg.org"


//////////////////////////////////////////////////////////////////////
module PortableServer {
//////////////////////////////////////////////////////////////////////

  #pragma version PortableServer 2.3

  exception ForwardRequest { Object forward_reference; };
  #pragma version ForwardRequest 2.3

  // **************************************************
  //
  // AdapterActivator interface
  //
  // **************************************************

  interface AdapterActivator {

    boolean unknown_adapter(in POA parent, in string name);
  };
  #pragma version AdapterActivator 2.3

  // **************************************************
  //
  // ServantManager interface
  //
  // **************************************************

  interface ServantManager {};
  #pragma version ServantManager 2.3

  interface ServantActivator : ServantManager {

    Servant incarnate(in ObjectId oid, in POA adapter)
      raises ( ForwardRequest );

    void etherealize(in ObjectId oid, in POA adapter,
		     in Servant serv, in boolean cleanup_in_progress,
		     in boolean remaining_activations );
  };
  #pragma version ServantActivator 2.3

  interface ServantLocator : ServantManager {

    //??native 	Cookie;
    typedef short Cookie;

    Servant preinvoke(in ObjectId oid, in POA adapter,
		      in CORBA::Identifier operation,
		      out Cookie the_cookie )
      raises ( ForwardRequest );

    void postinvoke(in ObjectId oid, in POA adapter,
		    in CORBA::Identifier operation,
		    in Cookie the_cookie, in Servant the_servant);
  };
  #pragma version ServantLocator 2.3

//////////////////////////////////////////////////////////////////////
};
//////////////////////////////////////////////////////////////////////

#pragma prefix ""


#endif  // __PORTABLESERVER_POA_IDL__