完善网络框架,增加服务器断开连接回调

This commit is contained in:
ALEXTANG
2023-07-18 17:36:48 +08:00
parent a473971cfb
commit 526baf45fa
39 changed files with 559 additions and 308 deletions

View File

@@ -34,12 +34,12 @@ namespace TEngine
private bool CheckLogLevel(int level)
{
if (Define.Options == null)
if (AppDefine.Options == null)
{
return true;
}
return Define.Options.LogLevel <= level;
return AppDefine.Options.LogLevel <= level;
}
public void Trace(string msg)