1
0
cuberite-2a/ProtoProxy/Server.h
madmaxoft@gmail.com e1c83be32d ProtoProxy: Initial import of the protocol proxy project.
Currently it logs all communication, doesn't decode anything, doesn't decrypt.

git-svn-id: http://mc-server.googlecode.com/svn/trunk@822 0a769ca7-a7f5-676a-18bf-c427514a06d6
2012-09-02 15:38:28 +00:00

39 lines
565 B
C++

// Server.h
// Interfaces to the cServer class encapsulating the entire "server"
#pragma once
class cServer
{
SOCKET m_ListenSocket;
RSA::PrivateKey m_PrivateKey;
RSA::PublicKey m_PublicKey;
short m_ConnectPort;
public:
cServer(void);
int Init(short a_ListenPort, short a_ConnectPort);
void Run(void);
RSA::PrivateKey & GetPrivateKey(void) { return m_PrivateKey; }
RSA::PublicKey & GetPublicKey (void) { return m_PublicKey; }
short GetConnectPort(void) const { return m_ConnectPort; }
} ;