summaryrefslogtreecommitdiffstats
path: root/src/Protocol/ProtocolRecognizer.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-04-04 11:47:46 +0200
committermadmaxoft <github@xoft.cz>2014-04-04 11:47:46 +0200
commit4be894f0601fcfa182fda045b07b196e5dcd9343 (patch)
treec3864d80195075b0c994f8b1b3e91f06f66bf93f /src/Protocol/ProtocolRecognizer.cpp
parentFixed CreateHexDump's format string. (diff)
downloadcuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.gz
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.bz2
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.lz
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.xz
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.tar.zst
cuberite-4be894f0601fcfa182fda045b07b196e5dcd9343.zip
Diffstat (limited to 'src/Protocol/ProtocolRecognizer.cpp')
-rw-r--r--src/Protocol/ProtocolRecognizer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Protocol/ProtocolRecognizer.cpp b/src/Protocol/ProtocolRecognizer.cpp
index 81f146370..3f7d7b254 100644
--- a/src/Protocol/ProtocolRecognizer.cpp
+++ b/src/Protocol/ProtocolRecognizer.cpp
@@ -854,7 +854,7 @@ bool cProtocolRecognizer::TryRecognizeProtocol(void)
// This must be a lengthed protocol, try if it has the entire initial handshake packet:
m_Buffer.ResetRead();
UInt32 PacketLen;
- UInt32 ReadSoFar = m_Buffer.GetReadableSpace();
+ UInt32 ReadSoFar = (UInt32)m_Buffer.GetReadableSpace();
if (!m_Buffer.ReadVarInt(PacketLen))
{
// Not enough bytes for the packet length, keep waiting
@@ -931,7 +931,7 @@ bool cProtocolRecognizer::TryRecognizeLengthlessProtocol(void)
bool cProtocolRecognizer::TryRecognizeLengthedProtocol(UInt32 a_PacketLengthRemaining)
{
UInt32 PacketType;
- UInt32 NumBytesRead = m_Buffer.GetReadableSpace();
+ UInt32 NumBytesRead = (UInt32)m_Buffer.GetReadableSpace();
if (!m_Buffer.ReadVarInt(PacketType))
{
return false;
@@ -962,7 +962,7 @@ bool cProtocolRecognizer::TryRecognizeLengthedProtocol(UInt32 a_PacketLengthRema
m_Buffer.ReadBEShort(ServerPort);
m_Buffer.ReadVarInt(NextState);
m_Buffer.CommitRead();
- m_Protocol = new cProtocol172(m_Client, ServerAddress, ServerPort, NextState);
+ m_Protocol = new cProtocol172(m_Client, ServerAddress, (UInt16)ServerPort, NextState);
return true;
}
}