2013-11-19 13:42:50 +01:00
|
|
|
#include "Client.h"
|
|
|
|
|
2013-11-21 13:40:52 +01:00
|
|
|
using namespace Oyster::Network::Client;
|
|
|
|
|
2013-11-19 13:42:50 +01:00
|
|
|
Client::Client()
|
|
|
|
{
|
|
|
|
connection = new Connection();
|
|
|
|
}
|
|
|
|
|
|
|
|
Client::~Client()
|
|
|
|
{
|
2013-11-22 14:23:08 +01:00
|
|
|
delete this->connection;
|
|
|
|
connection = 0;
|
2013-11-19 13:42:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Client::Connect(unsigned int port, char filename[])
|
|
|
|
{
|
|
|
|
connection->Connect(port, filename);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-22 08:56:00 +01:00
|
|
|
void Client::Send(unsigned char msg[])
|
2013-11-19 13:42:50 +01:00
|
|
|
{
|
|
|
|
connection->Send(msg);
|
|
|
|
}
|
|
|
|
|
2013-11-22 08:56:00 +01:00
|
|
|
void Client::Recv(unsigned char msg[])
|
2013-11-19 13:42:50 +01:00
|
|
|
{
|
|
|
|
connection->Recieve(msg);
|
|
|
|
}
|