Danbias/Code/Network/NetworkDependencies/Connection.h

36 lines
745 B
C++

//////////////////////////////////
// Created by Sam Svensson 2013 //
//////////////////////////////////
#ifndef NETWORK_DEPENDENCIES_CONNECTION_H
#define NETWORK_DEPENDENCIES_CONNECTION_H
#include "IConnection.h"
namespace Oyster
{
namespace Network
{
class Connection : public IConnection
{
public:
Connection() { mySocket = 0; };
Connection(int socket) { mySocket = socket; };
~Connection();
virtual bool Connect( unsigned short port , const char serverName[] );
virtual bool InitiateServer( unsigned short port );
virtual void Disconnect();
virtual bool Send(const char message[]);
virtual int Recieve(char message[]);
virtual int Listen();
private:
int mySocket;
};
}
}
#endif