MainSocket.cpp
上传用户:power_led
上传日期:2013-04-11
资源大小:373k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. // MainSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ChatClient.h"
  5. #include "MainSocket.h"
  6. #include "MainFrm.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMainSocket
  14. CMainSocket::CMainSocket():iState(NOTLOGIN)
  15. {
  16. bMessage = FALSE;
  17. }
  18. CMainSocket::~CMainSocket()
  19. {
  20. }
  21. // Do not edit the following lines, which are needed by ClassWizard.
  22. #if 0
  23. BEGIN_MESSAGE_MAP(CMainSocket, CSocket)
  24. //{{AFX_MSG_MAP(CMainSocket)
  25. //}}AFX_MSG_MAP
  26. END_MESSAGE_MAP()
  27. #endif // 0
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CMainSocket member functions
  30. void CMainSocket::OnReceive(int nErrorCode) 
  31. {
  32. // TODO: Add your specialized code here and/or call the base class
  33. CMainFrame * pFrame = static_cast <CMainFrame *>(AfxGetMainWnd());
  34. CMyTreeView * pTreeView = pFrame->GetTreeView();
  35. Message msContent;
  36. int iLen1 = sizeof(msContent); int iLen2 = sizeof(Message);
  37. memset(&msContent,0,sizeof(msContent));
  38. int iLen = Receive(&msContent,sizeof(msContent));
  39. CParseMessage Parse(pTreeView,msContent);
  40. Parse.SWitchMessage();
  41. CSocket::OnReceive(nErrorCode);
  42. }
  43. void CMainSocket::SetState(int state)
  44. {
  45. if(state == NOTLOGIN || state == HAVELOGIN)
  46. iState = state;
  47. }
  48. int CMainSocket::GetState()
  49. {
  50. return iState;
  51. }