mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
43 lines
1.1 KiB
C++
Executable File
43 lines
1.1 KiB
C++
Executable File
// ======================================================================
|
|
//
|
|
// LoggerConnection.cpp
|
|
//
|
|
// Copyright 2002 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#include "FirstLogServer.h"
|
|
#include "LoggerConnection.h"
|
|
|
|
// ======================================================================
|
|
|
|
LoggerConnection::LoggerConnection(UdpConnectionMT * u, TcpClient * t) :
|
|
ServerConnection(u, t)
|
|
{
|
|
REPORT_LOG(true, ("LoggerConnection created.\n"));
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
LoggerConnection::~LoggerConnection()
|
|
{
|
|
REPORT_LOG(true, ("LoggerConnection destroyed.\n"));
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
void LoggerConnection::onConnectionClosed()
|
|
{
|
|
ServerConnection::onConnectionClosed();
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
void LoggerConnection::onConnectionOpened()
|
|
{
|
|
ServerConnection::onConnectionOpened();
|
|
}
|
|
|
|
// ======================================================================
|
|
|