ListenerSocket.cpp
上传用户:cjwgreen1
上传日期:2013-01-27
资源大小:24k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. // ListenerSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TelnetServer.h"
  5. #include "ListenerSocket.h"
  6. #include "TelnetServerDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CListenerSocket
  14. CListenerSocket::CListenerSocket()
  15. {
  16. }
  17. CListenerSocket::~CListenerSocket()
  18. {
  19. }
  20. // Do not edit the following lines, which are needed by ClassWizard.
  21. #if 0
  22. BEGIN_MESSAGE_MAP(CListenerSocket, CSocket)
  23. //{{AFX_MSG_MAP(CListenerSocket)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. #endif // 0
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CListenerSocket member functions
  29. void CListenerSocket::SetParent(CDialog *pWnd)
  30. {
  31. m_pWnd = pWnd;
  32. }
  33. void CListenerSocket::OnAccept(int nErrorCode) 
  34. {
  35. // TODO: Add your specialized code here and/or call the base class
  36. if (nErrorCode == 0)
  37. ((CTelnetServerDlg*)m_pWnd)->OnAccept();
  38. }