aboutsummaryrefslogtreecommitdiff
path: root/src/server/bnetserver/Authentication/AuthCodes.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-10-04 00:26:38 +0200
committerShauren <shauren.trinity@gmail.com>2015-10-04 00:26:38 +0200
commit705e5ea5d9ff5344b89be5aa5e0b6504acff5502 (patch)
tree489fe941184636f983022102d4aeaf2e7ffc6700 /src/server/bnetserver/Authentication/AuthCodes.h
parent8ebb1054982d53785d934d41400e6c626e08f4f2 (diff)
Core/Battle.net
* Updated game account flags * Fixed infinite loop in ReadFourCC if value in packet was 0 * Corrected ClosingReason enum in ConnectionClosing
Diffstat (limited to 'src/server/bnetserver/Authentication/AuthCodes.h')
-rw-r--r--src/server/bnetserver/Authentication/AuthCodes.h39
1 files changed, 20 insertions, 19 deletions
diff --git a/src/server/bnetserver/Authentication/AuthCodes.h b/src/server/bnetserver/Authentication/AuthCodes.h
index 224f4e66c28..e7b1582a6af 100644
--- a/src/server/bnetserver/Authentication/AuthCodes.h
+++ b/src/server/bnetserver/Authentication/AuthCodes.h
@@ -32,25 +32,26 @@ enum GameAccountFlags
GAMEACCOUNT_FLAG_EU_FORBID_ELV = 0x00000100,
GAMEACCOUNT_FLAG_EU_FORBID_BILLING = 0x00000200,
GAMEACCOUNT_FLAG_WOW_RESTRICTED = 0x00000400,
- GAMEACCOUNT_FLAG_REFERRAL = 0x00000800,
- GAMEACCOUNT_FLAG_BLIZZARD = 0x00001000,
- GAMEACCOUNT_FLAG_RECURRING_BILLING = 0x00002000,
- GAMEACCOUNT_FLAG_NOELECTUP = 0x00004000,
- GAMEACCOUNT_FLAG_KR_CERTIFICATE = 0x00008000,
- GAMEACCOUNT_FLAG_EXPANSION_COLLECTOR = 0x00010000,
- GAMEACCOUNT_FLAG_DISABLE_VOICE = 0x00020000,
- GAMEACCOUNT_FLAG_DISABLE_VOICE_SPEAK = 0x00040000,
- GAMEACCOUNT_FLAG_REFERRAL_RESURRECT = 0x00080000,
- GAMEACCOUNT_FLAG_EU_FORBID_CC = 0x00100000,
- GAMEACCOUNT_FLAG_OPENBETA_DELL = 0x00200000,
- GAMEACCOUNT_FLAG_PROPASS = 0x00400000,
- GAMEACCOUNT_FLAG_PROPASS_LOCK = 0x00800000,
- GAMEACCOUNT_FLAG_PENDING_UPGRADE = 0x01000000,
- GAMEACCOUNT_FLAG_RETAIL_FROM_TRIAL = 0x02000000,
- GAMEACCOUNT_FLAG_EXPANSION2_COLLECTOR = 0x04000000,
- GAMEACCOUNT_FLAG_OVERMIND_LINKED = 0x08000000,
- GAMEACCOUNT_FLAG_DEMOS = 0x10000000,
- GAMEACCOUNT_FLAG_DEATH_KNIGHT_OK = 0x20000000,
+ GAMEACCOUNT_FLAG_PARENTAL_CONTROL = 0x00000800,
+ GAMEACCOUNT_FLAG_REFERRAL = 0x00001000,
+ GAMEACCOUNT_FLAG_BLIZZARD = 0x00002000,
+ GAMEACCOUNT_FLAG_RECURRING_BILLING = 0x00004000,
+ GAMEACCOUNT_FLAG_NOELECTUP = 0x00008000,
+ GAMEACCOUNT_FLAG_KR_CERTIFICATE = 0x00010000,
+ GAMEACCOUNT_FLAG_EXPANSION_COLLECTOR = 0x00020000,
+ GAMEACCOUNT_FLAG_DISABLE_VOICE = 0x00040000,
+ GAMEACCOUNT_FLAG_DISABLE_VOICE_SPEAK = 0x00080000,
+ GAMEACCOUNT_FLAG_REFERRAL_RESURRECT = 0x00100000,
+ GAMEACCOUNT_FLAG_EU_FORBID_CC = 0x00200000,
+ GAMEACCOUNT_FLAG_OPENBETA_DELL = 0x00400000,
+ GAMEACCOUNT_FLAG_PROPASS = 0x00800000,
+ GAMEACCOUNT_FLAG_PROPASS_LOCK = 0x01000000,
+ GAMEACCOUNT_FLAG_PENDING_UPGRADE = 0x02000000,
+ GAMEACCOUNT_FLAG_RETAIL_FROM_TRIAL = 0x04000000,
+ GAMEACCOUNT_FLAG_EXPANSION2_COLLECTOR = 0x08000000,
+ GAMEACCOUNT_FLAG_OVERMIND_LINKED = 0x10000000,
+ GAMEACCOUNT_FLAG_DEMOS = 0x20000000,
+ GAMEACCOUNT_FLAG_DEATH_KNIGHT_OK = 0x40000000,
};
namespace Battlenet