[9448] Ignore anything untracked in src/bindings/
[getmangos.git] / src / realmd / AuthCodes.h
blobfda95da7ccce623749ff73922f022f1e7e5a6c57
1 /*
2 * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 /** \file
20 \ingroup realmd
23 #ifndef _AUTHCODES_H
24 #define _AUTHCODES_H
26 enum eAuthResults
28 REALM_AUTH_SUCCESS = 0x00,
29 REALM_AUTH_FAILURE = 0x01, ///< Unable to connect
30 REALM_AUTH_UNKNOWN1 = 0x02, ///< Unable to connect
31 REALM_AUTH_ACCOUNT_BANNED = 0x03, ///< This <game> account has been closed and is no longer available for use. Please go to <site>/banned.html for further information.
32 REALM_AUTH_NO_MATCH = 0x04, ///< The information you have entered is not valid. Please check the spelling of the account name and password. If you need help in retrieving a lost or stolen password, see <site> for more information
33 REALM_AUTH_UNKNOWN2 = 0x05, ///< The information you have entered is not valid. Please check the spelling of the account name and password. If you need help in retrieving a lost or stolen password, see <site> for more information
34 REALM_AUTH_ACCOUNT_IN_USE = 0x06, ///< This account is already logged into <game>. Please check the spelling and try again.
35 REALM_AUTH_PREPAID_TIME_LIMIT = 0x07, ///< You have used up your prepaid time for this account. Please purchase more to continue playing
36 REALM_AUTH_SERVER_FULL = 0x08, ///< Could not log in to <game> at this time. Please try again later.
37 REALM_AUTH_WRONG_BUILD_NUMBER = 0x09, ///< Unable to validate game version. This may be caused by file corruption or interference of another program. Please visit <site> for more information and possible solutions to this issue.
38 REALM_AUTH_UPDATE_CLIENT = 0x0a, ///< Downloading
39 REALM_AUTH_UNKNOWN3 = 0x0b, ///< Unable to connect
40 REALM_AUTH_ACCOUNT_FREEZED = 0x0c, ///< This <game> account has been temporarily suspended. Please go to <site>/banned.html for further information
41 REALM_AUTH_UNKNOWN4 = 0x0d, ///< Unable to connect
42 REALM_AUTH_UNKNOWN5 = 0x0e, ///< Connected.
43 REALM_AUTH_PARENTAL_CONTROL = 0x0f ///< Access to this account has been blocked by parental controls. Your settings may be changed in your account preferences at <site>
46 // will only support WoW 1.12.1/1.12.2 , WoW:TBC 2.4.3 and official release for WoW:WotLK and later, client builds 10505, 8606, 6005, 5875
47 // if you need more from old build then add it in cases in relamd sources code
48 // list sorted from high to low build and first build used as low bound for accepted by default range (any > it will accepted by realmd at least)
50 #define EXPECTED_REALMD_CLIENT_BUILD \
51 { \
52 11403, /* 3.3.2 and higher */ \
53 11159, /* 3.3.0a */ \
54 10505, /* 3.2.2a */ \
55 8606, /* 2.4.3 */ \
56 6005, /* 1.12.2 */ \
57 5875, /* 1.12.1 */ \
58 0 \
61 // At update excepted builds please update if need define DEFAULT_MAX_LEVEL
62 // in DBCEnum.h to default max player level expected by build
63 // and also in mangosd.conf.in
65 #endif