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

Web服务器

开发平台:

Visual C++

  1. // Listen.h : interface of the CListenSocket 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. class CHttpSvrDoc;
  13. class CListenSocket : public CAsyncSocket
  14. {
  15. DECLARE_DYNCREATE(CListenSocket)
  16. CListenSocket( void );
  17. public:
  18. CListenSocket( CHttpSvrDoc* pDoc );
  19. protected:
  20. CHttpSvrDoc* m_pDoc;
  21. virtual void OnAccept( int nErrorCode );
  22. };