/usr/include/ace/INet/ClientRequestHandler.inl is in libace-inet-dev 6.0.3+dfsg-0.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 | // -*- C++ -*-
//
// $Id: ClientRequestHandler.inl 90450 2010-06-08 07:25:58Z mcorino $
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
namespace ACE
{
namespace INet
{
ACE_INLINE
const ACE_CString& ClientINetRequestHandler::INetConnectionKey::host () const
{
return this->host_;
}
ACE_INLINE
u_short ClientINetRequestHandler::INetConnectionKey::port () const
{
return this->port_;
}
}
}
ACE_END_VERSIONED_NAMESPACE_DECL
|