Changeset 74 for trunk/src/trinityrealm/AuthSocket.h
- Timestamp:
- 11/19/08 13:31:47 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/trinityrealm/AuthSocket.h
r44 r74 34 34 #include "sockets/Parse.h" 35 35 #include "sockets/Socket.h" 36 #include "zthread/Mutex.h" 36 37 37 38 /// Handle login commands … … 59 60 60 61 FILE *pPatch; 62 ZThread::Mutex patcherLock; 61 63 bool IsLag(); 62 64 … … 71 73 std::string _login; 72 74 std::string _safelogin; 73 uint8 _localization; 75 76 77 // Since GetLocaleByName() is _NOT_ bijective, we have to store the locale as a string. Otherwise we can't differ 78 // between enUS and enGB, which is important for the patch system 79 std::string _localizationName; 80 uint16 _build; 74 81 AccountTypes _accountSecurityLevel; 75 82 };