/usr/share/idl/tao/EndpointPolicy/EndpointPolicy.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 | //
// $Id: EndpointPolicy.pidl 73138 2006-06-19 19:50:42Z jwillemsen $
/**
* @file EndpointPolicy.pidl
*
* This file contains idl definition for Endpoint policy interface and
* the policy value. This TAO-specific policy is used to filter endpoints
* in the profiles for use in Object References.
*/
#ifndef _TAO_ENDPOINT_POLICY_IDL_
#define _TAO_ENDPOINT_POLICY_IDL_
///FUZZ: disable check_for_include/
#include "tao/Policy.pidl"
#include "tao/EndpointPolicy/EndpointPolicyType.pidl"
module EndpointPolicy
{
local interface EndpointValueBase
{
readonly attribute unsigned long protocol_tag;
};
typedef sequence<EndpointValueBase> EndpointList;
local interface Policy : CORBA::Policy
{
readonly attribute EndpointList value;
};
};
#endif /* _TAO_ENDPOINT_POLICY_IDL_ */
|