diff options
author | Shauren <shauren.trinity@gmail.com> | 2019-12-07 13:02:10 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2019-12-07 13:14:16 +0100 |
commit | b990a79fd8643159ebe5c302c564c9ef52b2b5c6 (patch) | |
tree | c9c0ccbe1111f8180f12b4f8d23f550404253a9f /src/server/authserver/Authentication/AuthCodes.h | |
parent | 60763fc5e2d7bb32150d8e03bfd0fb3e7cb890f3 (diff) |
Core/Realms: Move build info (and auth seeds) to database
(cherry picked from commit 61f2eed3531ebfd2585ab05add31ae9e97598233)
Diffstat (limited to 'src/server/authserver/Authentication/AuthCodes.h')
-rw-r--r-- | src/server/authserver/Authentication/AuthCodes.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/server/authserver/Authentication/AuthCodes.h b/src/server/authserver/Authentication/AuthCodes.h index c734a87968f..1441e0e16f3 100644 --- a/src/server/authserver/Authentication/AuthCodes.h +++ b/src/server/authserver/Authentication/AuthCodes.h @@ -80,20 +80,10 @@ enum ExpansionFlags NO_VALID_EXP_FLAG = 0x0 }; -struct RealmBuildInfo -{ - int Build; - int MajorVersion; - int MinorVersion; - int BugfixVersion; - int HotfixVersion; - std::array<uint8, 20> WindowsHash; - std::array<uint8, 20> MacHash; -}; +struct RealmBuildInfo; namespace AuthHelper { - RealmBuildInfo const* GetBuildInfo(int build); bool IsAcceptedClientBuild(int build); bool IsPostBCAcceptedClientBuild(int build); bool IsPreBCAcceptedClientBuild(int build); |