diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-06 19:36:59 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-06 19:36:59 +0200 |
commit | 0ba2be666f68dda7a76d28e7cd8c74812c501d9f (patch) | |
tree | bf0795f7b89dd956bf4a4cfa002f7ef009915c38 /source/cAuthenticator.h | |
parent | Removed excessive debug logging in cProtocol132 (diff) | |
download | cuberite-0ba2be666f68dda7a76d28e7cd8c74812c501d9f.tar cuberite-0ba2be666f68dda7a76d28e7cd8c74812c501d9f.tar.gz cuberite-0ba2be666f68dda7a76d28e7cd8c74812c501d9f.tar.bz2 cuberite-0ba2be666f68dda7a76d28e7cd8c74812c501d9f.tar.lz cuberite-0ba2be666f68dda7a76d28e7cd8c74812c501d9f.tar.xz cuberite-0ba2be666f68dda7a76d28e7cd8c74812c501d9f.tar.zst cuberite-0ba2be666f68dda7a76d28e7cd8c74812c501d9f.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cAuthenticator.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/source/cAuthenticator.h b/source/cAuthenticator.h index 0d69e930e..4d0bd1bbb 100644 --- a/source/cAuthenticator.h +++ b/source/cAuthenticator.h @@ -50,11 +50,16 @@ private: class cUser { public: - int mClientID; - AString mName; - AString mServerHash; + int m_ClientID; + AString m_Name; + AString m_ServerID; - cUser(int a_ClientID, const AString & a_Name, const AString & a_ServerHash) : mClientID(a_ClientID), mName(a_Name), mServerHash(a_ServerHash) {} + cUser(int a_ClientID, const AString & a_Name, const AString & a_ServerID) : + m_ClientID(a_ClientID), + m_Name(a_Name), + m_ServerID(a_ServerID) + { + } } ; typedef std::deque<cUser> cUserList; |