LogServer

This commit is contained in:
Anonymous
2014-01-16 20:38:03 -07:00
parent 2bcd8a262c
commit c76ba3f66a
20 changed files with 1539 additions and 0 deletions
@@ -0,0 +1,42 @@
// ======================================================================
//
// 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();
}
// ======================================================================