ChatSock.cpp
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. // ChatSock.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "AnyServer.h"
  5. #include "ChatSock.h"
  6. #include "AnyServerDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CChatSock
  14. CChatSock::CChatSock()
  15. {
  16. }
  17. CChatSock::~CChatSock()
  18. {
  19. if (m_pArchiveOut != NULL)
  20. delete m_pArchiveOut;
  21. if (m_pArchiveIn != NULL)
  22. delete m_pArchiveIn;
  23. if (m_pFile != NULL)
  24. delete m_pFile;
  25. }
  26. // Do not edit the following lines, which are needed by ClassWizard.
  27. #if 0
  28. BEGIN_MESSAGE_MAP(CChatSock, CSocket)
  29. //{{AFX_MSG_MAP(CChatSock)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. #endif // 0
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CChatSock member functions
  35. CChatSock::CChatSock(CAnyServerDoc* pDoc)
  36. {
  37. m_pDoc=pDoc;
  38. }
  39. void CChatSock::OnReceive(int nErrorCode) 
  40. {
  41. CSocket::OnReceive(nErrorCode);
  42. m_pDoc->ProcessPendingRead(this);
  43. }
  44. void CChatSock::init()
  45. {
  46. m_pFile = new CSocketFile(this);
  47. m_pArchiveIn = new CArchive(m_pFile,CArchive::load);
  48. m_pArchiveOut = new CArchive(m_pFile,CArchive::store);
  49. }