FtpLog.cpp
上传用户:surprise9
上传日期:2007-01-04
资源大小:426k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // This source code, executables and programs containing source code or
  2. // binaries or proprietetary technology from the War Software Series are
  3. // NOT alloed used, viewed or tested by any governmental agencies in
  4. // any countries. This includes the government, departments, police, 
  5. // military etc.
  6. // ---
  7. // This file is intended for use with Tab space = 2
  8. // Created and maintained in MSVC Developer Studio
  9. // ---
  10. // NAME : FtpLog.cpp
  11. // PURPOSE : FTP Daemon log module
  12. // PROGRAM : War FTP Daemon
  13. // DATE : Sept. 21 1996
  14. // AUTHOR : Jarle Aase
  15. // ---
  16. // NOTE : All class names start with CFTPD
  17. // ---
  18. // REVISION HISTORY
  19. // 
  20. #include "stdafx.h"
  21. #include "WarFTPDaemon.h"
  22. #include "..IncludeFTPDaemon.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // class CFTPDLog
  30. CFTPDLog::CFTPDLog()
  31. {
  32. Create(NULL,".\FtpDaemon.ini","Log", COPTION_GROUP_FTPLOG);
  33. LoadAll();
  34. }
  35. CFTPDLog::~CFTPDLog()
  36. {
  37. Flush(TRUE);
  38. SaveAll();
  39. }