Added ChatServer and soePlatform

This commit is contained in:
Anonymous
2014-01-17 03:40:51 -07:00
parent 26b88b4533
commit 4fae2dfe0f
183 changed files with 64549 additions and 0 deletions
@@ -0,0 +1,33 @@
// CustomerServiceServerConnection.h
// Copyright 2004, Sony Online Entertainment Inc., all rights reserved.
#ifndef INCLUDED_CustomerServiceServerConnection_H
#define INCLUDED_CustomerServiceServerConnection_H
//-----------------------------------------------------------------------
#include "serverUtility/ServerConnection.h"
//-----------------------------------------------------------------------
class CustomerServiceServerConnection : public ServerConnection
{
public:
CustomerServiceServerConnection(const std::string & remoteAddress, const unsigned short remotePort);
virtual ~CustomerServiceServerConnection();
void onConnectionClosed();
void onConnectionOpened();
void onReceive(const Archive::ByteStream & bs);
private:
CustomerServiceServerConnection();
CustomerServiceServerConnection & operator = (const CustomerServiceServerConnection & rhs);
CustomerServiceServerConnection(const CustomerServiceServerConnection & source);
};
//-----------------------------------------------------------------------
#endif // INCLUDED_CustomerServiceServerConnection_H