mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
(based on zergtmn's repo commit 3a8c259) (based on zergtmn's repo commit 946c1a8) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
94 lines
2.4 KiB
C++
94 lines
2.4 KiB
C++
// -*- C++ -*-
|
|
//
|
|
// $Id: MEM_Acceptor.inl 91688 2010-09-09 11:21:50Z johnnyw $
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
ACE_INLINE int
|
|
ACE_MEM_Acceptor::open (const ACE_Addr &local_sap,
|
|
ACE_Protocol_Info *protocolinfo,
|
|
ACE_SOCK_GROUP g,
|
|
u_long flags,
|
|
int reuse_addr,
|
|
int protocol_family,
|
|
int backlog,
|
|
int protocol)
|
|
{
|
|
return this->ACE_SOCK_Acceptor::open
|
|
(local_sap, protocolinfo, g, flags, reuse_addr, protocol_family,
|
|
backlog, protocol);
|
|
}
|
|
|
|
ACE_INLINE int
|
|
ACE_MEM_Acceptor::accept (ACE_SOCK_Stream &new_stream,
|
|
ACE_Addr *remote_addr,
|
|
ACE_Time_Value *timeout,
|
|
bool restart,
|
|
bool reset_new_handle) const
|
|
{
|
|
return this->ACE_SOCK_Acceptor::accept
|
|
(new_stream, remote_addr, timeout, restart, reset_new_handle);
|
|
}
|
|
|
|
#if !defined (ACE_HAS_WINCE)
|
|
ACE_INLINE int
|
|
ACE_MEM_Acceptor::accept (ACE_SOCK_Stream &new_stream,
|
|
ACE_Accept_QoS_Params qos_params,
|
|
ACE_Addr *remote_addr,
|
|
ACE_Time_Value *timeout,
|
|
bool restart,
|
|
bool reset_new_handle) const
|
|
{
|
|
return this->ACE_SOCK_Acceptor::accept
|
|
(new_stream, qos_params, remote_addr, timeout, restart, reset_new_handle);
|
|
}
|
|
#endif // ACE_HAS_WINCE
|
|
|
|
ACE_INLINE int
|
|
ACE_MEM_Acceptor::get_local_addr (ACE_MEM_Addr &sap) const
|
|
{
|
|
ACE_INET_Addr temp;
|
|
|
|
this->ACE_SOCK_Acceptor::get_local_addr (temp);
|
|
sap.set_port_number (temp.get_port_number ());
|
|
return 0;
|
|
}
|
|
|
|
ACE_INLINE const ACE_TCHAR *
|
|
ACE_MEM_Acceptor::mmap_prefix (void) const
|
|
{
|
|
return this->mmap_prefix_;
|
|
}
|
|
|
|
ACE_INLINE void
|
|
ACE_MEM_Acceptor::mmap_prefix (const ACE_TCHAR *prefix)
|
|
{
|
|
if (prefix == 0)
|
|
{
|
|
this->mmap_prefix_ = 0;
|
|
}
|
|
else
|
|
{
|
|
this->mmap_prefix_ = ACE::strnew (prefix);
|
|
}
|
|
}
|
|
|
|
ACE_INLINE ACE_MEM_IO::Signal_Strategy
|
|
ACE_MEM_Acceptor::preferred_strategy (void) const
|
|
{
|
|
return this->preferred_strategy_;
|
|
}
|
|
|
|
ACE_INLINE void
|
|
ACE_MEM_Acceptor::preferred_strategy (ACE_MEM_IO::Signal_Strategy strategy)
|
|
{
|
|
this->preferred_strategy_ = strategy;
|
|
}
|
|
|
|
ACE_INLINE void
|
|
ACE_MEM_Acceptor::init_buffer_size (ACE_OFF_T bytes)
|
|
{
|
|
this->malloc_options_.minimum_bytes_ = bytes;
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|