Danbias/Code/Network/OysterNetworkServer/Client.cpp

24 lines
355 B
C++
Raw Normal View History

#include "Client.h"
using namespace Oyster::Network;
using namespace Oyster::Network::Server;
Client::Client(unsigned int socket)
{
connection = new Connection(socket);
}
Client::~Client()
{
delete connection;
}
void Client::Send(OysterByte& bytes)
{
connection->Send(bytes);
2013-11-19 14:21:25 +01:00
}
void Client::Recv(OysterByte& bytes)
2013-11-19 14:21:25 +01:00
{
connection->Recieve(bytes);
}