RootCenter.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // RootCenter.cpp: implementation of the CRootCenter class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "RootCenter.h"
  6. #include "S3Relay.h"
  7. #include "Global.h"
  8. //////////////////////////////////////////////////////////////////////
  9. // Construction/Destruction
  10. //////////////////////////////////////////////////////////////////////
  11. CRootCenter::CRootCenter()
  12. {
  13. }
  14. CRootCenter::~CRootCenter()
  15. {
  16. }
  17. BOOL CRootCenter::TraceInfo()
  18. {
  19. std::_tstring info("message: [RootCenter] ");
  20. char buffer[_MAX_PATH];
  21. BOOL ready = g_RootClient.IsReady();
  22. sprintf(buffer, "<total: %d> : ", ready ? 1 : 0);
  23. info.append(buffer);
  24. if (ready)
  25. {
  26. sprintf(buffer, "%08X", g_RootClient.GetSvrIP());
  27. info.append(buffer);
  28. }
  29. rTRACE(info.c_str());
  30. return TRUE;
  31. }