diff options
| author | Shauren <shauren.trinity@gmail.com> | 2015-10-06 00:30:47 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2015-10-06 00:30:47 +0200 |
| commit | 63def8aa3291d0a6e5f83b289ad12c4c8a3cebd9 (patch) | |
| tree | cfb5fe68515b5421c0719430f3689733bde20429 /src/server/bnetserver/Authentication/AuthCodes.h | |
| parent | 2c828a47a5aa03c850f0a0fdf7c2100771f69ef8 (diff) | |
Core/Battle.net:
* Changed packet structures to mirror client names
* Simplified ToString Building
* Removed deprecated structures
World: Cleaned up duplicate realm info 'realm' and 'realmHandle' variables (realmHandle was removed, that data is fully contained in realm)
Diffstat (limited to 'src/server/bnetserver/Authentication/AuthCodes.h')
| -rw-r--r-- | src/server/bnetserver/Authentication/AuthCodes.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/server/bnetserver/Authentication/AuthCodes.h b/src/server/bnetserver/Authentication/AuthCodes.h index e7b1582a6af..a217238fe59 100644 --- a/src/server/bnetserver/Authentication/AuthCodes.h +++ b/src/server/bnetserver/Authentication/AuthCodes.h @@ -109,6 +109,39 @@ namespace Battlenet LOGIN_INVALID_PAYMENT = 219, LOGIN_INVALID_ACCOUNT_STATE = 220 }; + + namespace Wow + { + enum AuthResult + { + WOW_SUCCESS = 0, + WOW_FAIL_BANNED = 3, + WOW_FAIL_UNKNOWN_ACCOUNT = 4, + WOW_FAIL_INCORRECT_PASSWORD = 5, + WOW_FAIL_ALREADY_ONLINE = 6, + WOW_FAIL_NO_TIME = 7, + WOW_FAIL_DB_BUSY = 8, + WOW_FAIL_VERSION_INVALID = 9, + WOW_FAIL_VERSION_UPDATE = 10, + WOW_FAIL_INVALID_SERVER = 11, + WOW_FAIL_SUSPENDED = 12, + WOW_FAIL_FAIL_NOACCESS = 13, + WOW_SUCCESS_SURVEY = 14, + WOW_FAIL_PARENTCONTROL = 15, + WOW_FAIL_LOCKED_ENFORCED = 16, + WOW_FAIL_TRIAL_ENDED = 17, + WOW_FAIL_OVERMIND_CONVERTED = 18, + WOW_FAIL_ANTI_INDULGENCE = 19, + WOW_FAIL_EXPIRED = 20, + WOW_FAIL_NO_GAME_ACCOUNT = 21, + WOW_FAIL_BILLING_LOCK = 22, + WOW_FAIL_IGR_WITHOUT_BNET = 23, + WOW_FAIL_AA_LOCK = 24, + WOW_FAIL_UNLOCKABLE_LOCK = 25, + WOW_FAIL_MUST_USE_BNET = 26, + WOW_FAIL_OTHER = 255, + }; + } } struct RealmBuildInfo |
