ClientSocket.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ClientSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ChatSvr.h"
  5. #include "ClientSocket.h"
  6. #include "ChatSvrDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CClientSocket
  14. CClientSocket::CClientSocket()
  15. {
  16. }
  17. CClientSocket::CClientSocket(CChatSvrDlg* pDlg)
  18. {
  19. m_pDlg = pDlg;
  20. }
  21. CClientSocket::~CClientSocket()
  22. {
  23. }
  24. // Do not edit the following lines, which are needed by ClassWizard.
  25. #if 0
  26. BEGIN_MESSAGE_MAP(CClientSocket, CSocket)
  27. //{{AFX_MSG_MAP(CClientSocket)
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. #endif // 0
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CClientSocket member functions
  33. //通知服务器可以接收数据了
  34. void CClientSocket::OnReceive(int nErrorCode) 
  35. {
  36. CSocket::OnReceive(nErrorCode);
  37. if(m_pDlg)
  38. {
  39. //让主对话框处理数据
  40. m_pDlg->ProcessPendingRead(this);
  41. }
  42. }
  43. void CClientSocket::OnSend(int nErrorCode) 
  44. {
  45. CSocket::OnSend(nErrorCode);
  46. }