diff options
author | madmaxoft <github@xoft.cz> | 2014-01-23 23:35:23 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-01-23 23:35:23 +0100 |
commit | 5f34c78091a7c884a9c27c0f0691cd1f03174dfe (patch) | |
tree | 0162e472332c09c3841bd46656ae8b2ec7f87b0e /src/Protocol/Protocol17x.cpp | |
parent | Fixed a bug in LeakFinder. (diff) | |
download | cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.gz cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.bz2 cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.lz cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.xz cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.tar.zst cuberite-5f34c78091a7c884a9c27c0f0691cd1f03174dfe.zip |
Diffstat (limited to 'src/Protocol/Protocol17x.cpp')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 9506332dc..bcc638796 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -73,11 +73,11 @@ void cProtocol172::DataReceived(const char * a_Data, int a_Size) { if (m_IsEncrypted) { - byte Decrypted[512]; + Byte Decrypted[512]; while (a_Size > 0) { int NumBytes = (a_Size > sizeof(Decrypted)) ? sizeof(Decrypted) : a_Size; - m_Decryptor.ProcessData(Decrypted, (byte *)a_Data, NumBytes); + m_Decryptor.ProcessData(Decrypted, (Byte *)a_Data, NumBytes); AddReceivedData((const char *)Decrypted, NumBytes); a_Size -= NumBytes; a_Data += NumBytes; @@ -1664,11 +1664,11 @@ void cProtocol172::SendData(const char * a_Data, int a_Size) { if (m_IsEncrypted) { - byte Encrypted[8192]; // Larger buffer, we may be sending lots of data (chunks) + Byte Encrypted[8192]; // Larger buffer, we may be sending lots of data (chunks) while (a_Size > 0) { int NumBytes = (a_Size > sizeof(Encrypted)) ? sizeof(Encrypted) : a_Size; - m_Encryptor.ProcessData(Encrypted, (byte *)a_Data, NumBytes); + m_Encryptor.ProcessData(Encrypted, (Byte *)a_Data, NumBytes); m_Client->SendData((const char *)Encrypted, NumBytes); a_Size -= NumBytes; a_Data += NumBytes; |