[9137] Add prev/new supported builds explcitly to realmd supported builds list.

This commit is contained in:
VladimirMangos 2010-01-10 08:27:16 +03:00
parent dc643371c8
commit 3b71868cd9
3 changed files with 5 additions and 2 deletions

View file

@ -49,7 +49,8 @@ enum eAuthResults
#define EXPECTED_REALMD_CLIENT_BUILD \ #define EXPECTED_REALMD_CLIENT_BUILD \
{ \ { \
10505, /* 3.2.2a and higher */ \ 11159, /* 3.3.0a and higher */ \
10505, /* 3.2.2a */ \
8606, /* 2.4.3 */ \ 8606, /* 2.4.3 */ \
6005, /* 1.12.2 */ \ 6005, /* 1.12.2 */ \
5875, /* 1.12.1 */ \ 5875, /* 1.12.1 */ \

View file

@ -347,6 +347,7 @@ void AuthSocket::SendProof(Sha1Hash sha)
} }
case 8606: // 2.4.3 case 8606: // 2.4.3
case 10505: // 3.2.2a case 10505: // 3.2.2a
case 11159: // 3.3.0a
default: // or later default: // or later
{ {
sAuthLogonProof_S proof; sAuthLogonProof_S proof;
@ -980,6 +981,7 @@ void AuthSocket::LoadRealmlist(ByteBuffer &pkt, uint32 acctid)
case 8606: // 2.4.3 case 8606: // 2.4.3
case 10505: // 3.2.2a case 10505: // 3.2.2a
case 11159: // 3.3.0a
default: // and later default: // and later
{ {
pkt << uint32(0); pkt << uint32(0);

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9136" #define REVISION_NR "9137"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__