1
0

Add support for release 1.12.2 (#4041)

This commit is contained in:
peterbell10
2017-09-21 14:12:43 +01:00
committed by Alexander Harkness
parent 15fd4ef829
commit e883aa828c
5 changed files with 109 additions and 4 deletions

View File

@@ -1133,6 +1133,11 @@ bool cProtocolRecognizer::TryRecognizeLengthedProtocol(UInt32 a_PacketLengthRema
m_Protocol = new cProtocol_1_12_1(m_Client, ServerAddress, ServerPort, NextState);
return true;
}
case PROTO_VERSION_1_12_2:
{
m_Protocol = new cProtocol_1_12_2(m_Client, ServerAddress, ServerPort, NextState);
return true;
}
default:
{
LOGD("Client \"%s\" uses an unsupported protocol (lengthed, version %u (0x%x))",