mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 19:35:42 +00:00
57 lines
1.6 KiB
C++
57 lines
1.6 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
/** \addtogroup u2w User to World Communication
|
|
* @{
|
|
* \file WorldSocketMgr.h
|
|
*/
|
|
|
|
#ifndef __WORLDSOCKETACCEPTOR_H_
|
|
#define __WORLDSOCKETACCEPTOR_H_
|
|
|
|
#include "Common.h"
|
|
|
|
#include <ace/Acceptor.h>
|
|
#include <ace/SOCK_Acceptor.h>
|
|
|
|
#include "WorldSocket.h"
|
|
|
|
class WorldSocketAcceptor : public ACE_Acceptor<WorldSocket, ACE_SOCK_Acceptor>
|
|
{
|
|
public:
|
|
WorldSocketAcceptor(void) { }
|
|
virtual ~WorldSocketAcceptor(void)
|
|
{
|
|
if (reactor())
|
|
reactor()->cancel_timer(this, 1);
|
|
}
|
|
|
|
protected:
|
|
|
|
virtual int handle_timeout(const ACE_Time_Value& /*current_time*/, const void* /*act = 0*/)
|
|
{
|
|
sLog->outBasic("Resuming acceptor");
|
|
reactor()->cancel_timer(this, 1);
|
|
return reactor()->register_handler(this, ACE_Event_Handler::ACCEPT_MASK);
|
|
}
|
|
|
|
virtual int handle_accept_error(void)
|
|
{
|
|
#if defined(ENFILE) && defined(EMFILE)
|
|
if (errno == ENFILE || errno == EMFILE)
|
|
{
|
|
sLog->outError("Out of file descriptors, suspending incoming connections for 10 seconds");
|
|
reactor()->remove_handler(this, ACE_Event_Handler::ACCEPT_MASK | ACE_Event_Handler::DONT_CALL);
|
|
reactor()->schedule_timer(this, NULL, ACE_Time_Value(10));
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
#endif /* __WORLDSOCKETACCEPTOR_H_ */
|
|
/// @}
|