default_paths.h
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /* ProFTPD default path configuration.  Normally, Makefiles generated
  2.  * by the top-level configuration script define the RUN_DIR and
  3.  * CONFIG_FILE_PATH macros, so the two below are typically not used.
  4.  */
  5. #ifndef PROFTPD_PATHS_H
  6. #define PROFTPD_PATHS_H
  7. /* The location you wish to place the "run-time" status file used by
  8.  * ftpcount, ftpwho, etc.
  9.  */
  10. #ifndef RUN_DIR
  11. #define RUN_DIR "/var/run/proftpd"
  12. #endif
  13. /* The default location of the proftpd configuration file.  Can be
  14.  * overriden at runtime with the '-c' switch
  15.  */
  16. #ifndef CONFIG_FILE_PATH
  17. #define CONFIG_FILE_PATH "/etc/proftpd.conf"
  18. #endif
  19. /* The location of your `shells' file; a newline delimited list of
  20.  * valid shells on your system.
  21.  */
  22. #define VALID_SHELL_PATH "/etc/shells"
  23. /* Where your log files are kept.  The "wu-ftpd style" xferlog is
  24.  * stored here, as well as "extended" (not yet available) transfer
  25.  * log files.  These can be overridden in the configuration file via
  26.  * "TransferLog" and "ExtendedLog".  (note ExtendedLog does not work yet)
  27.  */
  28. #define XFERLOG_PATH "/var/log/xferlog"
  29. #define EXTLOG_PATH "/var/log/proftpd-log"
  30. /* Location of the file that tells proftpd to discontinue servicing
  31.  * requests.
  32.  */
  33. #define SHUTMSG_PATH "/etc/shutmsg"
  34. /* Location of the file containing users that *cannot* use ftp
  35.  * services (odd, eh?)
  36.  */
  37. #define FTPUSERS_PATH "/etc/ftpusers"
  38. #endif /* PROFTPD_PATHS_H */