Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1996 - 1999
  3. Module Name:
  4. rslimits.h
  5. Abstract:
  6. This module defines the limits for various configurable parameters in HSM.
  7. These definitions should be used by:
  8. 1) The UI
  9. 2) The CLI
  10. 3) The corresponding implementing objects
  11. Author:
  12. Ran Kalach (rankala) 3/6/00
  13. --*/
  14. #ifndef _RSLIMITS_
  15. #define _RSLIMITS_
  16. #define HSMADMIN_DEFAULT_MINSIZE 12
  17. #define HSMADMIN_DEFAULT_FREESPACE 5
  18. #define HSMADMIN_DEFAULT_INACTIVITY 180
  19. #define HSMADMIN_MIN_MINSIZE 2
  20. #define HSMADMIN_MAX_MINSIZE 32000
  21. #define HSMADMIN_MIN_FREESPACE 0
  22. #define HSMADMIN_MAX_FREESPACE 99
  23. #define HSMADMIN_MIN_INACTIVITY 0
  24. #define HSMADMIN_MAX_INACTIVITY 999
  25. #define HSMADMIN_MIN_COPY_SETS 0
  26. #define HSMADMIN_MAX_COPY_SETS 3
  27. #define HSMADMIN_MIN_RECALL_LIMIT 1
  28. #define HSMADMIN_MIN_CONCURRENT_TASKS 1
  29. #define HSMADMIN_MAX_VOLUMES 512 // This ought to be plenty
  30. #endif // _RSLIMITS_