mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
65 lines
1.7 KiB
C++
Executable File
65 lines
1.7 KiB
C++
Executable File
// ChatServerConnection.cpp
|
|
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
|
|
// Author: Justin Randall
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#include "FirstCentralServer.h"
|
|
#include "ChatServerConnection.h"
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
ChatServerConnection::ChatServerConnection(UdpConnectionMT * u, TcpClient * t) :
|
|
ServerConnection(u, t),
|
|
gameServicePort(0)
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
ChatServerConnection::~ChatServerConnection()
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
const unsigned short ChatServerConnection::getGameServicePort() const
|
|
{
|
|
return gameServicePort;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
void ChatServerConnection::onConnectionOpened()
|
|
{
|
|
ServerConnection::onConnectionOpened();
|
|
static MessageConnectionCallback m("ChatServerConnectionOpened");
|
|
emitMessage(m);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
void ChatServerConnection::onConnectionClosed()
|
|
{
|
|
ServerConnection::onConnectionClosed();
|
|
static MessageConnectionCallback m("ChatServerConnectionClosed");
|
|
emitMessage(m);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
void ChatServerConnection::onReceive(const Archive::ByteStream & message)
|
|
{
|
|
ServerConnection::onReceive(message);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
void ChatServerConnection::setGameServicePort(const unsigned short p)
|
|
{
|
|
gameServicePort = p;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|