Core/Misc: Replace ACE_UINT* to uint* (#1628)

* Core/Common: Replace ACE_UINT* to uint*

* #include "Common.h"
This commit is contained in:
Kargatum 2019-03-26 13:38:16 +07:00 committed by GitHub
parent 6ba32eaff1
commit 30b0325cee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 14 deletions

View file

@ -220,7 +220,7 @@ WorldSocketMgr::~WorldSocketMgr()
}
int
WorldSocketMgr::StartReactiveIO (ACE_UINT16 port, const char* address)
WorldSocketMgr::StartReactiveIO (uint16 port, const char* address)
{
m_UseNoDelay = sConfigMgr->GetBoolDefault ("Network.TcpNodelay", true);
@ -266,7 +266,7 @@ WorldSocketMgr::StartReactiveIO (ACE_UINT16 port, const char* address)
}
int
WorldSocketMgr::StartNetwork (ACE_UINT16 port, const char* address)
WorldSocketMgr::StartNetwork (uint16 port, const char* address)
{
if (!sLog->IsOutDebug())
ACE_Log_Msg::instance()->priority_mask (LM_ERROR, ACE_Log_Msg::PROCESS);