1
0

Cut out all packet handling to a separate cProtocol descendant

git-svn-id: http://mc-server.googlecode.com/svn/trunk@796 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com
2012-08-27 17:31:16 +00:00
parent d97ad781b4
commit 66f4c9e0c0
28 changed files with 1725 additions and 1186 deletions

View File

@@ -18,7 +18,6 @@
cSocketThreads::cSocketThreads(void)
{
LOG("cSocketThreads startup");
}
@@ -55,7 +54,7 @@ bool cSocketThreads::AddClient(cSocket * a_Socket, cCallback * a_Client)
}
// No thread has free space, create a new one:
LOG("Creating a new cSocketThread (currently have %d)", m_Threads.size());
LOGD("Creating a new cSocketThread (currently have %d)", m_Threads.size());
cSocketThread * Thread = new cSocketThread(this);
if (!Thread->Start())
{