/usr/include/ace/SPIPE_Addr.inl is in libace-dev 6.3.3+dfsg-1.
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 | // -*- C++ -*-
#include "ace/SString.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// Compare two addresses for equality.
ACE_INLINE bool
ACE_SPIPE_Addr::operator == (const ACE_SPIPE_Addr &sap) const
{
return ACE_OS::strcmp (this->SPIPE_addr_.rendezvous_,
sap.SPIPE_addr_.rendezvous_ ) == 0;
}
// Compare two addresses for inequality.
ACE_INLINE bool
ACE_SPIPE_Addr::operator != (const ACE_SPIPE_Addr &sap) const
{
return !((*this) == sap); // This is lazy, of course... ;-)
}
// Return the path name used for the rendezvous point.
ACE_INLINE const ACE_TCHAR *
ACE_SPIPE_Addr::get_path_name (void) const
{
return this->SPIPE_addr_.rendezvous_;
}
ACE_INLINE uid_t
ACE_SPIPE_Addr::user_id (void) const
{
return this->SPIPE_addr_.uid_;
}
ACE_INLINE void
ACE_SPIPE_Addr::user_id (uid_t uid)
{
this->SPIPE_addr_.uid_ = uid;
}
ACE_INLINE gid_t
ACE_SPIPE_Addr::group_id (void) const
{
return this->SPIPE_addr_.gid_;
}
ACE_INLINE void
ACE_SPIPE_Addr::group_id (gid_t gid)
{
this->SPIPE_addr_.gid_ = gid;
}
ACE_END_VERSIONED_NAMESPACE_DECL
|