ListenSocket.cpp
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. // ListenSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Billiards.h"
  5. #include "ListenSocket.h"
  6. #include "BilliardsDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CListenSocket
  14. CListenSocket::CListenSocket(CBilliardsDoc* pDoc)
  15. {
  16. m_pListenDoc=pDoc;
  17. }
  18. CListenSocket::~CListenSocket()
  19. {
  20. }
  21. // Do not edit the following lines, which are needed by ClassWizard.
  22. #if 0
  23. BEGIN_MESSAGE_MAP(CListenSocket, CSocket)
  24. //{{AFX_MSG_MAP(CListenSocket)
  25. //}}AFX_MSG_MAP
  26. END_MESSAGE_MAP()
  27. #endif // 0
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CListenSocket member functions
  30. void CListenSocket::OnAccept(int nErrorCode) 
  31. {
  32. // TODO: Add your specialized code here and/or call the base class
  33. if(nErrorCode==0)
  34.         m_pListenDoc->AcceptConnection();
  35. //CSocket::OnAccept(nErrorCode);
  36. }
  37. /*
  38. void CListenSocket::OnReceive(int nErrorCode) 
  39. {
  40.     CString strTemp;
  41.     if(nErrorCode==0){
  42.         char *pBuf=new char[100];
  43.     int nReceived;
  44.     if((nReceived=Receive(pBuf,50))==SOCKET_ERROR){
  45.     AfxMessageBox("无法接收数据",MB_OK);
  46.     }
  47.     pBuf[nReceived]='';
  48.         if(pBuf[0]=='2')
  49.             m_pListenDoc->ReceiveVelocity(pBuf);
  50.         else
  51. {
  52. strTemp=pBuf;
  53. m_pListenDoc->ReceiveMSG(strTemp);
  54.         }
  55.     }
  56. }
  57. */