diff options
Diffstat (limited to 'src/trinityrealm/AuthSocket.h')
-rw-r--r-- | src/trinityrealm/AuthSocket.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/trinityrealm/AuthSocket.h b/src/trinityrealm/AuthSocket.h index 73aa1b280e2..d20e8429752 100644 --- a/src/trinityrealm/AuthSocket.h +++ b/src/trinityrealm/AuthSocket.h @@ -1,7 +1,7 @@ /* - * Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/> + * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * - * Copyright (C) 2008 Trinity <http://www.trinitycore.org/> + * Copyright (C) 2008-2009 Trinity <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -25,15 +25,15 @@ #ifndef _AUTHSOCKET_H #define _AUTHSOCKET_H -#include "Common.h" -#include "Auth/BigNumber.h" #include "sockets/TcpSocket.h" #include "sockets/SocketHandler.h" #include "sockets/ListenSocket.h" #include "sockets/Utility.h" #include "sockets/Parse.h" #include "sockets/Socket.h" -#include "zthread/Mutex.h" + +#include "Common.h" +#include "Auth/BigNumber.h" /// Handle login commands class AuthSocket: public TcpSocket @@ -61,7 +61,7 @@ class AuthSocket: public TcpSocket void _SetVSFields(const std::string& rI); FILE *pPatch; - ZThread::Mutex patcherLock; + ACE_Thread_Mutex patcherLock; bool IsLag(); private: @@ -84,4 +84,3 @@ class AuthSocket: public TcpSocket }; #endif /// @} - |