22 lines
689 B
C++
22 lines
689 B
C++
#ifndef _GAMEDBPROXYSESSION_H_
|
|
#define _GAMEDBPROXYSESSION_H_
|
|
|
|
#include "ServerSessionEx.h"
|
|
|
|
//=================================================================================================
|
|
// Game DB Proxy의 접속을 받아 처리하기 위한 클래스
|
|
//=================================================================================================
|
|
class GameDBProxySession : public ServerSessionEx
|
|
{
|
|
public:
|
|
GameDBProxySession() {};
|
|
~GameDBProxySession() {};
|
|
|
|
virtual eSERVER_TYPE GetServerType() { return GAME_DBPROXY; }
|
|
|
|
protected:
|
|
// CHANGES: f110617.1L
|
|
virtual void OnRedirect(DWORD network_index, MSG_SERVER_TYPE* const first_contact_msg);
|
|
};
|
|
|
|
#endif //_GAMEDBPROXYSESSION_H_
|