diff options
author | madmaxoft <github@xoft.cz> | 2014-01-19 19:31:43 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-01-19 19:31:43 +0100 |
commit | 3c0e8c8da0e397f3fda6b1565e7b2e9eeb4a747b (patch) | |
tree | 5eaa7eb6bfd5434d008186decd3d43e302a9c2d8 /src/Server.cpp | |
parent | Added graph of SocketThreads state transitions. (diff) | |
download | cuberite-3c0e8c8da0e397f3fda6b1565e7b2e9eeb4a747b.tar cuberite-3c0e8c8da0e397f3fda6b1565e7b2e9eeb4a747b.tar.gz cuberite-3c0e8c8da0e397f3fda6b1565e7b2e9eeb4a747b.tar.bz2 cuberite-3c0e8c8da0e397f3fda6b1565e7b2e9eeb4a747b.tar.lz cuberite-3c0e8c8da0e397f3fda6b1565e7b2e9eeb4a747b.tar.xz cuberite-3c0e8c8da0e397f3fda6b1565e7b2e9eeb4a747b.tar.zst cuberite-3c0e8c8da0e397f3fda6b1565e7b2e9eeb4a747b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Server.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/Server.cpp b/src/Server.cpp index 5280270b9..4d551e164 100644 --- a/src/Server.cpp +++ b/src/Server.cpp @@ -118,7 +118,7 @@ cServer::cServer(void) : void cServer::ClientDestroying(const cClientHandle * a_Client) { - m_SocketThreads.StopReading(a_Client); + m_SocketThreads.RemoveClient(a_Client); } @@ -143,15 +143,6 @@ void cServer::WriteToClient(const cClientHandle * a_Client, const AString & a_Da -void cServer::QueueClientClose(const cClientHandle * a_Client) -{ - m_SocketThreads.QueueClose(a_Client); -} - - - - - void cServer::RemoveClient(const cClientHandle * a_Client) { m_SocketThreads.RemoveClient(a_Client); |