ClientSocket.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:2k
源码类别:

游戏

开发平台:

Visual C++

  1. #if !defined(AFX_CLIENTSOCKET_H__AC98B01D_DD4E_4558_84AF_AE1543A74CD5__INCLUDED_)
  2. #define AFX_CLIENTSOCKET_H__AC98B01D_DD4E_4558_84AF_AE1543A74CD5__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ClientSocket.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CClientSocket command target
  10. #include "afxsock.h"
  11. #include "CMessg.h"
  12. class CFiveChessView;
  13. class CClientSocket : public CSocket
  14. {
  15. // Attributes
  16. public:
  17. CArchive* m_aSessionIn;
  18. CArchive* m_aSessionOut;
  19. CSocketFile* m_sfSocketFile;
  20. CFiveChessView * m_view;
  21. bool m_bInit;
  22. bool m_bClose;
  23. public:
  24. void Init(CFiveChessView * view);
  25. BOOL SendMessage(CMessg * msg);
  26. void CloseSocket();
  27. public:
  28. static int GetLocalHostName(CString &sHostName); //获得本地计算机名称
  29. static int GetIpAddress(const CString &sHostName, CString &sIpAddress);//获得本地IP
  30. static int GetIpAddress(const CString &sHostName, BYTE &f0,BYTE &f1,BYTE &f2,BYTE &f3);//获得本地IP
  31. static CString ErrorReason(int tag); //
  32. // Operations
  33. public:
  34. CClientSocket();
  35. virtual ~CClientSocket();
  36. // Overrides
  37. public:
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CClientSocket)
  40. public:
  41. virtual void OnReceive(int nErrorCode);
  42. virtual void OnClose(int nErrorCode);
  43. //}}AFX_VIRTUAL
  44. // Generated message map functions
  45. //{{AFX_MSG(CClientSocket)
  46. // NOTE - the ClassWizard will add and remove member functions here.
  47. //}}AFX_MSG
  48. // Implementation
  49. protected:
  50. };
  51. /////////////////////////////////////////////////////////////////////////////
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_CLIENTSOCKET_H__AC98B01D_DD4E_4558_84AF_AE1543A74CD5__INCLUDED_)