From e41b15565c89b4f77adbcf5fce36e147549865f1 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Thu, 15 Nov 2012 11:00:40 +0000 Subject: Added support for 1.4.4 client, using the 1.4.2 protocol class No MCServer-supported packets changed. Initial patch by Setimes. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1042 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Protocol/ProtocolRecognizer.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'source/Protocol/ProtocolRecognizer.h') diff --git a/source/Protocol/ProtocolRecognizer.h b/source/Protocol/ProtocolRecognizer.h index 6672d34fc..d41e20f44 100644 --- a/source/Protocol/ProtocolRecognizer.h +++ b/source/Protocol/ProtocolRecognizer.h @@ -18,8 +18,8 @@ // Adjust these if a new protocol is added or an old one is removed: -#define MCS_CLIENT_VERSIONS "1.2.4, 1.2.5, 1.3.1, 1.3.2, 1.4.2" -#define MCS_PROTOCOL_VERSIONS "29, 39, 47" +#define MCS_CLIENT_VERSIONS "1.2.4, 1.2.5, 1.3.1, 1.3.2, 1.4.2, 1.4.4" +#define MCS_PROTOCOL_VERSIONS "29, 39, 47, 49" @@ -36,13 +36,17 @@ public: PROTO_VERSION_1_2_5 = 29, PROTO_VERSION_1_3_2 = 39, PROTO_VERSION_1_4_2 = 47, + PROTO_VERSION_1_4_4 = 49, - PROTO_VERSION_LATEST = PROTO_VERSION_1_4_2, // Keep this up to date, this serves as the default for PrimaryServerVersion + PROTO_VERSION_LATEST = PROTO_VERSION_1_4_4, // Keep this up to date, this serves as the default for PrimaryServerVersion } ; cProtocolRecognizer(cClientHandle * a_Client); virtual ~cProtocolRecognizer(); + /// Translates protocol version number into protocol version text: 49 -> "1.4.4" + static AString GetVersionTextFromInt(int a_ProtocolVersion); + /// Called when client sends some data: virtual void DataReceived(const char * a_Data, int a_Size) override; -- cgit v1.2.3