Ripped socket disconnect code

This commit is contained in:
krrios 2007-04-26 05:17:31 +00:00
parent 2b54372249
commit 0338bd6a75
3 changed files with 39 additions and 45 deletions

View file

@ -91,13 +91,13 @@ namespace Server.Network
public static void ReleaseSocket( Socket s )
{
if ( s == null )
/*if ( s == null )
return;
s.Close();
lock ( m_FreeSockets )
m_FreeSockets.Enqueue( s );
m_FreeSockets.Enqueue( s );*/
}
}
}