/usr/include/tao/Connector_Impl.cpp 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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | // $Id: Connector_Impl.cpp 91449 2010-08-24 14:27:43Z johnnyw $
#ifndef TAO_CONNECTOR_IMPL_CPP
#define TAO_CONNECTOR_IMPL_CPP
#include "tao/Connector_Impl.h"
#include "tao/Transport.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
template <class SVC_HANDLER>
TAO_Connect_Creation_Strategy<SVC_HANDLER>::
TAO_Connect_Creation_Strategy (ACE_Thread_Manager* t,
TAO_ORB_Core *orb_core)
: ACE_Creation_Strategy <SVC_HANDLER> (t),
orb_core_ (orb_core)
{
}
template <class SVC_HANDLER> int
TAO_Connect_Creation_Strategy<SVC_HANDLER>::make_svc_handler (SVC_HANDLER *&sh)
{
if (sh == 0)
ACE_NEW_RETURN (sh,
SVC_HANDLER (this->orb_core_),
-1);
sh->transport ()->opened_as (TAO::TAO_CLIENT_ROLE);
// At this point, the #REFCOUNT# is one.
return 0;
}
////////////////////////////////////////////////////////////////
template <class SVC_HANDLER>
TAO_Connect_Concurrency_Strategy<SVC_HANDLER>::
TAO_Connect_Concurrency_Strategy (TAO_ORB_Core *orb_core)
: orb_core_ (orb_core)
{
}
template <class SVC_HANDLER> int
TAO_Connect_Concurrency_Strategy<SVC_HANDLER>::
activate_svc_handler (SVC_HANDLER *sh, void *arg)
{
return ACE_Concurrency_Strategy<SVC_HANDLER>::activate_svc_handler (sh, arg);
}
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_CONNECTOR_IMPL_CPP */
|