summaryrefslogtreecommitdiffstats
path: root/source/ClientHandle.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-14 20:08:05 +0200
committermadmaxoft <github@xoft.cz>2013-08-14 20:08:05 +0200
commit0af2a0b08c1570199631530db066e442701e7357 (patch)
tree2ba0d7b4191b8bce46cfd774ea11185b7c8f6a80 /source/ClientHandle.h
parentClients are deleted when the world is stopped. (diff)
downloadcuberite-0af2a0b08c1570199631530db066e442701e7357.tar
cuberite-0af2a0b08c1570199631530db066e442701e7357.tar.gz
cuberite-0af2a0b08c1570199631530db066e442701e7357.tar.bz2
cuberite-0af2a0b08c1570199631530db066e442701e7357.tar.lz
cuberite-0af2a0b08c1570199631530db066e442701e7357.tar.xz
cuberite-0af2a0b08c1570199631530db066e442701e7357.tar.zst
cuberite-0af2a0b08c1570199631530db066e442701e7357.zip
Diffstat (limited to '')
-rw-r--r--source/ClientHandle.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/ClientHandle.h b/source/ClientHandle.h
index 4dcb188b3..9454b9b7a 100644
--- a/source/ClientHandle.h
+++ b/source/ClientHandle.h
@@ -288,12 +288,6 @@ private:
/// Running sum of m_NumExplosionsPerTick[]
int m_RunningSumExplosions;
- /// Lock for the m_PendingMessages buffer
- cCriticalSection m_CSMessages;
-
- /// Buffer for received messages to be processed in the Tick thread
- AStringList m_PendingMessages;
-
static int s_ClientCount;
int m_UniqueID;
@@ -320,9 +314,6 @@ private:
/// Handles the block placing packet when it is a real block placement (not block-using, item-using or eating)
void HandlePlaceBlock(int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, cItemHandler & a_ItemHandler);
- /// Processes the messages in m_PendingMessages; called from the Tick thread
- void ProcessPendingMessages(void);
-
// cSocketThreads::cCallback overrides:
virtual void DataReceived (const char * a_Data, int a_Size) override; // Data is received from the client
virtual void GetOutgoingData(AString & a_Data) override; // Data can be sent to client