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

Telnet服务器

开发平台:

Unix_Linux

  1. // ServerSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TelnetServer.h"
  5. #include "ServerSocket.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. // CServerSocket
  14. CServerSocket::CServerSocket()
  15. {
  16. }
  17. CServerSocket::~CServerSocket()
  18. {
  19. }
  20. // Do not edit the following lines, which are needed by ClassWizard.
  21. #if 0
  22. BEGIN_MESSAGE_MAP(CServerSocket, CSocket)
  23. //{{AFX_MSG_MAP(CServerSocket)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. #endif // 0
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CServerSocket member functions
  29. void CServerSocket::SetParent(CDialog *pWnd)
  30. {
  31. m_pWnd = pWnd;
  32. }
  33. void CServerSocket::OnClose(int nErrorCode) 
  34. {
  35. // TODO: Add your specialized code here and/or call the base class
  36. if (nErrorCode == 0)
  37. ((CTelnetServerDlg*)m_pWnd)->OnClose();
  38. }
  39. void CServerSocket::OnSend(int nErrorCode) 
  40. {
  41. // TODO: Add your specialized code here and/or call the base class
  42. if (nErrorCode == 0)
  43. ((CTelnetServerDlg*)m_pWnd)->OnSend();
  44. }
  45. void CServerSocket::OnReceive(int nErrorCode) 
  46. {
  47. // TODO: Add your specialized code here and/or call the base class
  48. if (nErrorCode == 0)
  49. ((CTelnetServerDlg*)m_pWnd)->OnReceive();
  50. }