diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-08-28 01:11:03 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-08-28 01:11:03 +0200 |
commit | ad8010730cefcf18e27c21a47be47b57b1f6bf40 (patch) | |
tree | 7a211e95892ebed82f03e90e167f235e46569081 /src/server/authserver/Authentication/AuthCodes.h | |
parent | c4f011f3324bc90631472bf2aa1b89590742909a (diff) |
Core/Authserver: Improved realmlist for multiple realms with different versions, idea from MaNGOS and allow 4.0.6a, 4.2.2 and 4.3.4 clients to use the authserver (no world connections)
Diffstat (limited to 'src/server/authserver/Authentication/AuthCodes.h')
-rwxr-xr-x | src/server/authserver/Authentication/AuthCodes.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/server/authserver/Authentication/AuthCodes.h b/src/server/authserver/Authentication/AuthCodes.h index f940d459d40..148225377ff 100755 --- a/src/server/authserver/Authentication/AuthCodes.h +++ b/src/server/authserver/Authentication/AuthCodes.h @@ -65,9 +65,6 @@ enum LoginResult LOGIN_LOCKED_ENFORCED = 0x10, }; -#define POST_BC_ACCEPTED_CLIENT_BUILD {12340, 11723, 11403, 11159, 10571, 10505, 10146, 9947, 8606, 0} -#define PRE_BC_ACCEPTED_CLIENT_BUILD {5875, 6005, 0} - enum ExpansionFlags { POST_BC_EXP_FLAG = 0x2, @@ -75,8 +72,18 @@ enum ExpansionFlags NO_VALID_EXP_FLAG = 0x0 }; +struct RealmBuildInfo +{ + int Build; + int MajorVersion; + int MinorVersion; + int BugfixVersion; + int HotfixVersion; +}; + namespace AuthHelper { + RealmBuildInfo const* GetBuildInfo(int build); bool IsAcceptedClientBuild(int build); bool IsPostBCAcceptedClientBuild(int build); bool IsPreBCAcceptedClientBuild(int build); |