2024-12-21 10:04:04 +08:00
|
|
|
|
|
|
|
|
#include "Stdafx.h"
|
|
|
|
|
#include "DNUserEventHandler.h"
|
|
|
|
|
#include "DNUserSession.h"
|
|
|
|
|
|
|
|
|
|
CDNUserEventHandler::CDNUserEventHandler( CDNUserSession* pSession ):m_pSession(pSession)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CDNUserEventHandler::~CDNUserEventHandler()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CDNUserEventHandler::OnFinalize()
|
|
|
|
|
{
|
|
|
|
|
m_pSession->WritePingLog();
|
|
|
|
|
}
|
|
|
|
|
|