ServerSocket.cpp
上传用户:jessejm
上传日期:2022-06-04
资源大小:1914k
文件大小:1k
源码类别:

P2P编程

开发平台:

Visual C++

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