32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
#ifndef _ACCOUNTDBPROXYSESSION_H_
|
|
#define _ACCOUNTDBPROXYSESSION_H_
|
|
|
|
#include "ServerSession.h"
|
|
|
|
//=================================================================================================
|
|
// Account DB Proxy¿¡ connectÇϱâ À§ÇÑ ¼¼¼Ç Ŭ·¡½º
|
|
//=================================================================================================
|
|
class AccountDBProxySession : public ServerSessionEx
|
|
{
|
|
public:
|
|
AccountDBProxySession() {};
|
|
~AccountDBProxySession() {};
|
|
|
|
virtual eSERVER_TYPE GetServerType() { return ACCOUNT_DBPROXY; }
|
|
|
|
protected:
|
|
// CHANGES: f110617.1L
|
|
virtual void OnRedirect(DWORD network_index, MSG_SERVER_TYPE* const first_contact_msg);
|
|
//-------------------------------------------------------------------------------------------------
|
|
// NetworkObject
|
|
virtual VOID OnConnect( BOOL bSuccess, DWORD dwNetworkIndex );
|
|
virtual VOID OnDisconnect();
|
|
|
|
protected:
|
|
struct SendFunc
|
|
{
|
|
static VOID RequestServerInfo( AccountDBProxySession* pServerSession );
|
|
};
|
|
};
|
|
|
|
#endif // _ACCOUNTDBPROXYSESSION_H_
|