diff --git a/src/Protocol/ProtocolRecognizer.cpp b/src/Protocol/ProtocolRecognizer.cpp index ef273d9e6..521f9e247 100644 --- a/src/Protocol/ProtocolRecognizer.cpp +++ b/src/Protocol/ProtocolRecognizer.cpp @@ -287,21 +287,21 @@ std::unique_ptr cMultiVersionProtocol::TryRecognizeLengthedProtocol(c switch (static_cast(ProtocolVersion)) { - case cProtocol::Version::v1_8_0: return std::make_unique (&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_9_0: return std::make_unique (&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_9_1: return std::make_unique (&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_9_2: return std::make_unique (&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_9_4: return std::make_unique (&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_10_0: return std::make_unique(&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_11_0: return std::make_unique(&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_11_1: return std::make_unique(&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_12: return std::make_unique (&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_12_1: return std::make_unique(&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_12_2: return std::make_unique(&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_13: return std::make_unique (&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_13_1: return std::make_unique(&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_13_2: return std::make_unique(&a_Client, ServerAddress, ServerPort, NextState); - case cProtocol::Version::v1_14: return std::make_unique (&a_Client, ServerAddress, ServerPort, NextState); + case cProtocol::Version::v1_8_0: return std::make_unique (&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_9_0: return std::make_unique (&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_9_1: return std::make_unique (&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_9_2: return std::make_unique (&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_9_4: return std::make_unique (&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_10_0: return std::make_unique(&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_11_0: return std::make_unique(&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_11_1: return std::make_unique(&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_12: return std::make_unique (&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_12_1: return std::make_unique(&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_12_2: return std::make_unique(&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_13: return std::make_unique (&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_13_1: return std::make_unique(&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_13_2: return std::make_unique(&a_Client, ServerAddress, NextState); + case cProtocol::Version::v1_14: return std::make_unique (&a_Client, ServerAddress, NextState); default: { LOGD("Client \"%s\" uses an unsupported protocol (lengthed, version %u (0x%x))", diff --git a/src/Protocol/Protocol_1_8.cpp b/src/Protocol/Protocol_1_8.cpp index 1ccc24e90..1c98d83f3 100644 --- a/src/Protocol/Protocol_1_8.cpp +++ b/src/Protocol/Protocol_1_8.cpp @@ -100,10 +100,9 @@ extern bool g_ShouldLogCommIn, g_ShouldLogCommOut; //////////////////////////////////////////////////////////////////////////////// // cProtocol_1_8_0: -cProtocol_1_8_0::cProtocol_1_8_0(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, State a_State) : +cProtocol_1_8_0::cProtocol_1_8_0(cClientHandle * a_Client, const AString & a_ServerAddress, State a_State) : Super(a_Client), m_ServerAddress(a_ServerAddress), - // Note: a_ServerPort is unused m_State(a_State), m_IsEncrypted(false) { diff --git a/src/Protocol/Protocol_1_8.h b/src/Protocol/Protocol_1_8.h index 47e483941..ced7cf62a 100644 --- a/src/Protocol/Protocol_1_8.h +++ b/src/Protocol/Protocol_1_8.h @@ -31,7 +31,7 @@ class cProtocol_1_8_0: public: - cProtocol_1_8_0(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, State a_State); + cProtocol_1_8_0(cClientHandle * a_Client, const AString & a_ServerAddress, State a_State); /** Called when client sends some data: */ virtual void DataReceived(cByteBuffer & a_Buffer, const char * a_Data, size_t a_Size) override; diff --git a/src/Protocol/Protocol_1_9.cpp b/src/Protocol/Protocol_1_9.cpp index db0d4c17d..c170227b5 100644 --- a/src/Protocol/Protocol_1_9.cpp +++ b/src/Protocol/Protocol_1_9.cpp @@ -79,8 +79,8 @@ static const UInt32 OFF_HAND = 1; //////////////////////////////////////////////////////////////////////////////// // cProtocol_1_9_0: -cProtocol_1_9_0::cProtocol_1_9_0(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, State a_State) : - Super(a_Client, a_ServerAddress, a_ServerPort, a_State), +cProtocol_1_9_0::cProtocol_1_9_0(cClientHandle * a_Client, const AString & a_ServerAddress, State a_State) : + Super(a_Client, a_ServerAddress, a_State), m_IsTeleportIdConfirmed(true), m_OutstandingTeleportId(0) { diff --git a/src/Protocol/Protocol_1_9.h b/src/Protocol/Protocol_1_9.h index a7bd12c0a..a180c8f5e 100644 --- a/src/Protocol/Protocol_1_9.h +++ b/src/Protocol/Protocol_1_9.h @@ -37,7 +37,7 @@ class cProtocol_1_9_0: public: - cProtocol_1_9_0(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, State a_State); + cProtocol_1_9_0(cClientHandle * a_Client, const AString & a_ServerAddress, State a_State); /** Sending stuff to clients (alphabetically sorted): */ virtual void SendAttachEntity (const cEntity & a_Entity, const cEntity & a_Vehicle) override;