Danbias/Code/Network/NetworkDependencies/Connection.h

43 lines
900 B
C
Raw Normal View History

#ifndef NETWORK_DEPENDENCIES_CONNECTION_H
#define NETWORK_DEPENDENCIES_CONNECTION_H
2013-11-19 12:38:13 +01:00
//////////////////////////////////
// Created by Sam Svensson 2013 //
//////////////////////////////////
#include "IConnection.h"
#include "../NetworkDependencies/OysterByte.h"
2013-11-19 12:38:13 +01:00
namespace Oyster
2013-11-19 12:38:13 +01:00
{
namespace Network
{
class Connection : public IConnection
{
public:
Connection() { this->socket = 0; };
Connection( int socket ) { this->socket = socket; };
virtual ~Connection();
2013-11-26 13:45:03 +01:00
virtual int InitiateServer( unsigned short port );
virtual int InitiateClient();
2013-11-27 11:28:11 +01:00
virtual int Send( OysterByte& bytes );
virtual int Recieve( OysterByte& bytes );
2013-11-26 13:45:03 +01:00
virtual int Disconnect();
virtual int Connect( unsigned short port , const char serverName[] );
virtual int Listen();
private:
2013-11-27 11:28:11 +01:00
int InitiateSocket();
void SetBlockingMode( bool blocking );
2013-11-25 14:03:32 +01:00
int socket;
};
}
}
2013-11-19 12:38:13 +01:00
#endif