paths.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Paths to configurable Asterisk directories
  5. *
  6. * Copyright (C) 1999-2006, Digium, Inc.
  7. *
  8. * Mark Spencer <markster@digium.com>
  9. *
  10. * This program is free software, distributed under the terms of
  11. * the GNU General Public License
  12. */
  13. /*! \file
  14. * \brief Asterisk file paths, configured in asterisk.conf
  15. */
  16. #ifndef _ASTERISK_PATHS_H
  17. #define _ASTERISK_PATHS_H
  18. extern const char *ast_config_AST_CONFIG_DIR;
  19. extern const char *ast_config_AST_CONFIG_FILE;
  20. extern const char *ast_config_AST_MODULE_DIR;
  21. extern const char *ast_config_AST_SPOOL_DIR;
  22. extern const char *ast_config_AST_MONITOR_DIR;
  23. extern const char *ast_config_AST_RECORDING_DIR;
  24. extern const char *ast_config_AST_VAR_DIR;
  25. extern const char *ast_config_AST_DATA_DIR;
  26. extern const char *ast_config_AST_LOG_DIR;
  27. extern const char *ast_config_AST_AGI_DIR;
  28. extern const char *ast_config_AST_DB;
  29. extern const char *ast_config_AST_KEY_DIR;
  30. extern const char *ast_config_AST_PID;
  31. extern const char *ast_config_AST_SOCKET;
  32. extern const char *ast_config_AST_RUN_DIR;
  33. extern const char *ast_config_AST_RUN_GROUP;
  34. extern const char *ast_config_AST_RUN_USER;
  35. extern const char *ast_config_AST_SYSTEM_NAME;
  36. extern const char *ast_config_AST_SBIN_DIR;
  37. extern const char *ast_config_AST_CTL_PERMISSIONS;
  38. extern const char *ast_config_AST_CTL_OWNER;
  39. extern const char *ast_config_AST_CTL_GROUP;
  40. extern const char *ast_config_AST_CTL;
  41. #endif /* _ASTERISK_PATHS_H */