Files
Sun1602/Server/DatabaseProxy/Sessions/PortalServerSession.cpp
T
2022-10-26 12:25:11 +08:00

20 lines
508 B
C++

#include "stdafx.h"
#include "./PortalServerSession.h"
#if !defined(_NA002635_GP_DP_PROTOCOL_UINIFICATION)
#include ".\PacketHandler.h"
__IMPL_CUSTOMPOOL_PTR( PortalServerSession )
PortalServerSession::PortalServerSession(void)
{
}
PortalServerSession::~PortalServerSession(void)
{
}
VOID PortalServerSession::OnRecv( BYTE * pMsg, WORD wSize )
{
PacketHandler::Instance()->ParsePacket( PACKET_HANDLER_PORTAL, this, (MSG_BASE *)pMsg, wSize );
}
#endif //if !defined(_NA002635_GP_DP_PROTOCOL_UINIFICATION)