ReadMe.txt
上传用户:szopptop
上传日期:2013-04-23
资源大小:1047k
文件大小:2k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. ===============================================================================
  2.        
  3.        LoginGate
  4.        
  5.        All written by Euy-heon, Jeong.
  6.        Copyright(C) 2001 Wemade Entertainment Co., LTD. All rights Reserved.
  7.        
  8. ===============================================================================
  9. Last Update : 2001/10/12
  10. Last Update Author : Euy-heon, Jeong.
  11. 1. Using common module file name.
  12. - RegistryHandler.cpp
  13. - ServerSockHandler.cpp
  14. 2. Global variables.
  15. - deque<string>  g_ReceiveDeq; <-- ClientSockMsg.cpp
  16. - HANDLE g_hThreadForComm; <-- ClientSockMsg.cpp
  17. - HINSTANCE g_hInst; <-- LoginGate.cpp
  18. - HWND g_hMainWnd; <-- LoginGate.cpp
  19. - HWND g_hLogMsgWnd; <-- LoginGate.cpp
  20. - HWND g_hToolBar; <-- LoginGate.cpp
  21. - static WSADATA  g_wsd; <-- LoginGate.cpp
  22. - TBBUTTON  tbButtons[]; <-- LoginGate.cpp
  23. - SOCKET g_ssock; <-- MainWndProc.cpp
  24. - SOCKADDR_IN g_saddr; <-- MainWndProc.cpp
  25. - SOCKET g_csock; <-- MainWndProc.cpp
  26. - SOCKADDR_IN g_caddr; <-- MainWndProc.cpp
  27. - map<SOCKET, CUserInfo, less<SOCKET> > g_TUserInfoMap; <-- ServerSockMsg.cpp
  28. - CRITICAL_SECTION g_cs; <-- ThreadFuncForMsg.cpp
  29. 3. File and function description.
  30. * StdAfx.cpp
  31. * ClientSockMsg.cpp
  32. - BOOL InitServerThreadForComm()
  33. - BOOL InitServerThreadForMsg()
  34. - LPARAM OnClientSockMsg(WPARAM wParam, LPARAM lParam)
  35. * ConfigDlgFunc.cpp
  36. - BOOL CALLBACK ConfigDlgFunc(HWND hWndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
  37. * LoginGate.cpp
  38. - int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
  39. - BOOL InitApplication(HANDLE hInstance)
  40. - BOOL InitInstance(HANDLE hInstance, int nCmdShow)
  41. - int AddNewLogMsg()
  42. - void InsertLogMsg(UINT nID)
  43. - void InsertLogMsg(LPTSTR lpszMsg)
  44. * LoginGate.rc
  45. * MainWndProc.cpp
  46. - void OnCommand(WPARAM wParam, LPARAM lParam)
  47. - LPARAM APIENTRY MainWndProc(HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam)
  48. * ServerSockMsg.cpp
  49. - LPARAM OnServerSockMsg(WPARAM wParam, LPARAM lParam)
  50. * ThreadFuncForComm.cpp
  51. - DWORD WINAPI ThreadFuncForComm(LPVOID lpParameter)
  52. * ThreadFuncForMsg.cpp
  53. - DWORD WINAPI ThreadFuncForMsg(LPVOID lpParameter)
  54. 4. History
  55. - 2001/8/31
  56. - Completed Alpha Version (V0.9) and written this document.
  57. - 2001/09/03
  58. - Modified 'CUserInfo' structure : array -> map collection (Key = Socket, Value = CUserInfo)
  59. - 2001/09/25
  60. - Changed packet on between gate server to login server. (string -> TGateToSvrHeader)