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

Web服务器

开发平台:

Visual C++

  1. // Http.h : structures, functions and definitions for http service
  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 CRequest;
  13. class CHitDoc : public CObject
  14. {
  15. protected: // create from serialization only
  16. CHitDoc();
  17. DECLARE_DYNCREATE(CHitDoc)
  18. void ParseFileName( const CString& strFullPath );
  19. public:
  20. CHitDoc( CString strFile );
  21. CHitDoc( CRequest* pRequest );
  22. int operator==( CHitDoc* pHit );
  23. public:
  24. CString     m_strFile;
  25. CString     m_strFolder;
  26. CString     m_strCommand;
  27. CString     m_strURL;
  28. CTime       m_timeLastHit;
  29. BOOL        m_bFolder;
  30. DWORD       m_dwExecute;
  31. int         m_nHits;
  32. int         m_nStatus;
  33. };