diff options
author | daniel0916 <theschokolps@gmail.com> | 2014-04-13 13:04:56 +0200 |
---|---|---|
committer | daniel0916 <theschokolps@gmail.com> | 2014-04-13 13:04:56 +0200 |
commit | b506a7407661c0527255466cf8b315824b0003c0 (patch) | |
tree | c1a08a8c495fdd9e25fbcabbc5c072efb5470798 /src/Authenticator.h | |
parent | Updated the NetherFort prefabs to current Gallery contents. (diff) | |
download | cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.gz cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.bz2 cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.lz cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.xz cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.zst cuberite-b506a7407661c0527255466cf8b315824b0003c0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Authenticator.h (renamed from src/Authenticator.h) | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/Authenticator.h b/src/Protocol/Authenticator.h index 02cd6f4c5..211f51394 100644 --- a/src/Authenticator.h +++ b/src/Protocol/Authenticator.h @@ -14,7 +14,7 @@ #ifndef CAUTHENTICATOR_H_INCLUDED #define CAUTHENTICATOR_H_INCLUDED -#include "OSSupport/IsThread.h" +#include "../OSSupport/IsThread.h" @@ -31,23 +31,23 @@ class cAuthenticator : public cIsThread { typedef cIsThread super; - + public: cAuthenticator(void); ~cAuthenticator(); - /// (Re-)read server and address from INI: + /** (Re-)read server and address from INI: */ void ReadINI(cIniFile & IniFile); - /// Queues a request for authenticating a user. If the auth fails, the user is kicked + /** Queues a request for authenticating a user. If the auth fails, the user will be kicked */ void Authenticate(int a_ClientID, const AString & a_UserName, const AString & a_ServerHash); - /// Starts the authenticator thread. The thread may be started and stopped repeatedly + /** Starts the authenticator thread. The thread may be started and stopped repeatedly */ void Start(cIniFile & IniFile); - - /// Stops the authenticator thread. The thread may be started and stopped repeatedly + + /** Stops the authenticator thread. The thread may be started and stopped repeatedly */ void Stop(void); - + private: class cUser @@ -56,30 +56,30 @@ private: int m_ClientID; AString m_Name; AString m_ServerID; - + 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; - + cCriticalSection m_CS; cUserList m_Queue; cEvent m_QueueNonempty; - + AString m_Server; AString m_Address; bool m_ShouldAuthenticate; - - // cIsThread override: + + /** cIsThread override: */ virtual void Execute(void) override; - - // Returns true if the user authenticated okay, false on error; iLevel is the recursion deptht (bails out if too deep) - bool AuthFromAddress(const AString & a_Server, const AString & a_Address, const AString & a_UserName, int a_Level = 1); + + /** Returns true if the user authenticated okay, false on error; iLevel is the recursion deptht (bails out if too deep) */ + bool AuthWithYggdrasil(AString & a_UserName, const AString & a_ServerId, AString & a_UUID); }; |