This file is indexed.

/usr/share/idl/tao/PI/RequestInfo.pidl is in libtao-dev 6.0.1-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
// -*- IDL -*-

/**
 * @file RequestInfo.pidl
 *
 * $Id: RequestInfo.pidl 92104 2010-09-30 09:53:25Z johnnyw $
 *
 * @brief Pre-compiled RequestInfo
 */

#ifndef _REQUESTINFO_PIDL_
#define _REQUESTINFO_PIDL_

#include "tao/PI_Forward.pidl"
#include "tao/AnyTypeCode/Dynamic.pidl"
#include "tao/Messaging_SyncScope.pidl"
#include "tao/PI/InvalidSlot.pidl"
#include "tao/IOP.pidl"

module PortableInterceptor {

  typeprefix PortableInterceptor "omg.org";

  local interface RequestInfo
  {
    readonly attribute unsigned long request_id;
    readonly attribute string operation;
    readonly attribute Dynamic::ParameterList arguments;
    readonly attribute Dynamic::ExceptionList exceptions;
    readonly attribute Dynamic::ContextList contexts;
    readonly attribute Dynamic::RequestContext operation_context;
    readonly attribute any result;
    readonly attribute boolean response_expected;
    readonly attribute Messaging::SyncScope sync_scope;
    readonly attribute ReplyStatus reply_status;
    readonly attribute Object forward_reference;
    any get_slot (in SlotId id) raises (InvalidSlot);
    IOP::ServiceContext get_request_service_context (in IOP::ServiceId id);
    IOP::ServiceContext get_reply_service_context (in IOP::ServiceId id);
  };
};

#endif  /* _REQUESTINFO_PIDL_ */