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

模拟服务器

开发平台:

C/C++

  1. // testIOCPServer.cpp : Defines the entry point for the console application.
  2. //
  3. #include <winsock2.h>
  4. #include "IOCPServerException.h"
  5. #include "IOCPServerUtils.h"
  6. #include "IOCPServerManualResetEvent.h"
  7. #include "GameServer.h"
  8. #include "JXServer.h"
  9. using OnlineGameLib::Win32::_tstring;
  10. using OnlineGameLib::Win32::CException;
  11. using OnlineGameLib::Win32::Output;
  12. using OnlineGameLib::Win32::CManualResetEvent;
  13. int main(int argc, char* argv[])
  14. {
  15. ServerStartup( INADDR_ANY, 5001, true );
  16. while ( true )
  17. {
  18. SERVER(Begin);
  19. SendToClient( 0, "test", 4 );
  20. ::Sleep( 1 );
  21. SERVER(End);
  22. }
  23. ServerCleanup();
  24. return 0;
  25. }