LISTEN.CPP
上传用户:btxinjin
上传日期:2007-01-04
资源大小:83k
文件大小:1k
源码类别:

Web服务器

开发平台:

Visual C++

  1. // Listen.cpp : implementation of the CListSocket class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1997-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "Listen.h"
  14. #include "ReqSock.h"
  15. #include "HttpDoc.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. IMPLEMENT_DYNCREATE(CListenSocket, CAsyncSocket)
  22. CListenSocket::CListenSocket( void )
  23. {
  24. m_pDoc = NULL;
  25. }
  26. CListenSocket::CListenSocket( CHttpSvrDoc* pDoc )
  27. {
  28. m_pDoc = pDoc;
  29. }
  30. void CListenSocket::OnAccept( int nErrorCode )
  31. {
  32. CRequestSocket* pRequest = new CRequestSocket( m_pDoc );
  33. if ( Accept( *pRequest ) )
  34. {
  35. pRequest->AsyncSelect( FD_READ|FD_CLOSE );
  36. }
  37. }