From b3d9910009127586ee1aada560e37312e206afbc Mon Sep 17 00:00:00 2001 From: Surion Date: Tue, 7 Aug 2012 21:05:06 -0500 Subject: [PATCH] [0015] Allow 4.0.6a and 4.3.0 to connect to realmd. --- src/realmd/AuthSocket.cpp | 4 ++++ src/realmd/RealmList.cpp | 2 ++ src/shared/revision_nr.h | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/realmd/AuthSocket.cpp b/src/realmd/AuthSocket.cpp index 659cf5e3a..c1179d05c 100644 --- a/src/realmd/AuthSocket.cpp +++ b/src/realmd/AuthSocket.cpp @@ -299,6 +299,8 @@ void AuthSocket::SendProof(Sha1Hash sha) case 11403: // 3.3.2 case 11723: // 3.3.3a case 12340: // 3.3.5a + case 13623: // 4.0.6a + case 15050: // 4.3.0 case 15595: // 4.3.4 default: // or later { @@ -955,6 +957,8 @@ void AuthSocket::LoadRealmlist(ByteBuffer& pkt, uint32 acctid) case 11403: // 3.3.2 case 11723: // 3.3.3a case 12340: // 3.3.5a + case 13623: // 4.0.6a + case 15050: // 4.3.0 case 15595: // 4.3.4 default: // and later { diff --git a/src/realmd/RealmList.cpp b/src/realmd/RealmList.cpp index 2b32fc070..330cb5dc1 100644 --- a/src/realmd/RealmList.cpp +++ b/src/realmd/RealmList.cpp @@ -38,6 +38,8 @@ extern DatabaseType LoginDatabase; static RealmBuildInfo ExpectedRealmdClientBuilds[] = { {15595, 4, 3, 4, ' '}, // highest supported build, also auto accept all above for simplify future supported builds testing + {15050, 4, 3, 0, ' '}, + {13623, 4, 0, 6, 'a'}, {12340, 3, 3, 5, 'a'}, {11723, 3, 3, 3, 'a'}, {11403, 3, 3, 2, ' '}, diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 9ee6e9c91..2139cb54e 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "0014" + #define REVISION_NR "0015" #endif // __REVISION_NR_H__