1 2 3 4 5 6 7 8 9 10 11 12 13
#pragma once class cBlockingTCPLink; class cAuthenticator { public: cAuthenticator(); ~cAuthenticator(); bool Authenticate( const char* a_PlayerName, const char* a_ServerID ); private: bool ParseReceived( const char* a_Data, cBlockingTCPLink* a_TCPLink ); };