Config.in 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. config BR2_PACKAGE_PROFTPD
  2. bool "proftpd"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. ProFTPD, a highly configurable FTP server.
  6. http://www.proftpd.org/
  7. if BR2_PACKAGE_PROFTPD
  8. config BR2_PACKAGE_PROFTPD_MOD_REWRITE
  9. bool "mod_rewrite support"
  10. help
  11. Compile ProFTPD with mod_rewrite support
  12. config BR2_PACKAGE_PROFTPD_MOD_REDIS
  13. bool "mod_redis support"
  14. select BR2_PACKAGE_HIREDIS
  15. help
  16. The mod_redis module enables ProFTPD support for caching
  17. data in Redis servers, using the hiredis client library.
  18. config BR2_PACKAGE_PROFTPD_MOD_SFTP
  19. bool "mod_sftp support"
  20. select BR2_PACKAGE_OPENSSL
  21. help
  22. Compile ProFTPD with mod_sftp support
  23. config BR2_PACKAGE_PROFTPD_MOD_SQL
  24. bool "mod_sql support"
  25. help
  26. Compile ProFTPD with mod_sql support.
  27. config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB
  28. bool "mod_quotatab support"
  29. help
  30. Compile ProFTPD with mod_quotatab support. This module
  31. is required in order to support quota tables:
  32. 1. mod_quotatab_file
  33. 2. mod_quotatab_ldap
  34. 3. mod_quotatab_radius
  35. 4. mod_quotatab_sql
  36. if BR2_PACKAGE_PROFTPD_MOD_QUOTATAB
  37. config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB_FILE
  38. bool "mod_quotatab_file table support"
  39. help
  40. Compile mod_quotatab with mod_quotatab_file table.
  41. config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB_LDAP
  42. bool "mod_quotatab_ldap table support"
  43. help
  44. Compile mod_quotatab with mod_quotatab_ldap table.
  45. config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB_RADIUS
  46. bool "mod_quotatab_radius table support"
  47. help
  48. Compile mod_quotatab with mod_quotatab_radius table.
  49. config BR2_PACKAGE_PROFTPD_MOD_QUOTATAB_SQL
  50. bool "mod_quotatab_sql table support"
  51. select BR2_PACKAGE_PROFTPD_MOD_SQL
  52. help
  53. Compile mod_quotatab with mod_quotatab_sql table.
  54. endif
  55. config BR2_PACKAGE_PROFTPD_BUFFER_SIZE
  56. int "buffer size in bytes (0 for default)"
  57. default "0"
  58. help
  59. By increasing the buffer size above the default of 1K,
  60. proftpd reads and writes data in larger chunks, and makes
  61. fewer expensive system calls. Use of this option to set buffer
  62. sizes of 8K or more has been reported to drastically increase
  63. transfer speeds (depending on network configurations).
  64. 0 uses the default size of 1024.
  65. endif