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

Telnet服务器

开发平台:

Visual C++

  1. // ChatLsnSock.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "AnyServer.h"
  5. #include "ChatLsnSock.h"
  6. #include "ChatSock.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CChatLsnSock
  14. #include "AnyServerDoc.h"
  15. CChatLsnSock::CChatLsnSock()
  16. {
  17. }
  18. CChatLsnSock::~CChatLsnSock()
  19. {
  20. }
  21. // Do not edit the following lines, which are needed by ClassWizard.
  22. #if 0
  23. BEGIN_MESSAGE_MAP(CChatLsnSock, CAsyncSocket)
  24. //{{AFX_MSG_MAP(CChatLsnSock)
  25. //}}AFX_MSG_MAP
  26. END_MESSAGE_MAP()
  27. #endif // 0
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CChatLsnSock member functions
  30. BOOL bChat=FALSE;
  31. void CChatLsnSock::OnAccept(int nErrorCode) 
  32. {
  33. // TODO: Add your specialized code here and/or call the base class
  34. if (!bChat)
  35. {
  36. bChat=TRUE;
  37. m_pDoc->ProcessPendingAccept();
  38. }
  39. CAsyncSocket::OnAccept(nErrorCode);
  40. }
  41. CChatLsnSock::CChatLsnSock(CAnyServerDoc* pDoc)
  42. {
  43. m_pDoc=pDoc;
  44. }