summaryrefslogtreecommitdiffstats
path: root/source/cAuthenticator.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-03-10 18:37:00 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-03-10 18:37:00 +0100
commit1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44 (patch)
treed56236f57100b68f5a1f22afbca1d477af4aadf2 /source/cAuthenticator.h
parentWas using "#else if" which is not valid apparently, now using "#elif" (diff)
downloadcuberite-1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44.tar
cuberite-1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44.tar.gz
cuberite-1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44.tar.bz2
cuberite-1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44.tar.lz
cuberite-1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44.tar.xz
cuberite-1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44.tar.zst
cuberite-1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44.zip
Diffstat (limited to '')
-rw-r--r--source/cAuthenticator.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/cAuthenticator.h b/source/cAuthenticator.h
index 4f33ac036..ba75e8eb3 100644
--- a/source/cAuthenticator.h
+++ b/source/cAuthenticator.h
@@ -59,13 +59,13 @@ private:
typedef std::deque<cUser> cUserList;
- cCriticalSection mCS;
- cUserList mQueue;
- cEvent mQueueNonempty;
+ cCriticalSection m_CS;
+ cUserList m_Queue;
+ cEvent m_QueueNonempty;
- AString mServer;
- AString mAddress;
- bool mShouldAuthenticate;
+ AString m_Server;
+ AString m_Address;
+ bool m_ShouldAuthenticate;
// cIsThread override:
virtual void Execute(void) override;