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.

94 lines
3.0 KiB

13 years ago
23 years ago
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2013 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Sascha Schumann <sascha@schumann.cx> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_APACHE_H
  20. #define PHP_APACHE_H
  21. #include "httpd.h"
  22. #include "http_config.h"
  23. #include "http_core.h"
  24. #include "php.h"
  25. #include "main/php_streams.h"
  26. /* Declare this so we can get to it from outside the sapi_apache2.c file */
  27. extern module AP_MODULE_DECLARE_DATA php5_module;
  28. /* A way to specify the location of the php.ini dir in an apache directive */
  29. extern char *apache2_php_ini_path_override;
  30. /* The server_context used by PHP */
  31. typedef struct php_struct {
  32. int state;
  33. request_rec *r;
  34. apr_bucket_brigade *brigade;
  35. /* stat structure of the current file */
  36. #if defined(NETWARE) && defined(CLIB_STAT_PATCH)
  37. struct stat_libc finfo;
  38. #else
  39. php_stat_t finfo;
  40. #endif
  41. /* Whether or not we've processed PHP in the output filters yet. */
  42. int request_processed;
  43. /* final content type */
  44. char *content_type;
  45. } php_struct;
  46. void *merge_php_config(apr_pool_t *p, void *base_conf, void *new_conf);
  47. void *create_php_config(apr_pool_t *p, char *dummy);
  48. char *get_php_config(void *conf, char *name, size_t name_len);
  49. void apply_config(void *);
  50. extern const command_rec php_dir_cmds[];
  51. void php_ap2_register_hook(apr_pool_t *p);
  52. #define APR_ARRAY_FOREACH_OPEN(arr, key, val) \
  53. { \
  54. apr_table_entry_t *elts; \
  55. int i; \
  56. elts = (apr_table_entry_t *) arr->elts; \
  57. for (i = 0; i < arr->nelts; i++) { \
  58. key = elts[i].key; \
  59. val = elts[i].val;
  60. #define APR_ARRAY_FOREACH_CLOSE() }}
  61. typedef struct {
  62. long engine;
  63. long xbithack;
  64. long last_modified;
  65. } php_apache2_info_struct;
  66. extern zend_module_entry apache2_module_entry;
  67. #ifdef ZTS
  68. extern int php_apache2_info_id;
  69. #define AP2(v) TSRMG(php_apache2_info_id, php_apache2_info_struct *, v)
  70. #else
  71. extern php_apache2_info_struct php_apache2_info;
  72. #define AP2(v) (php_apache2_info.v)
  73. #endif
  74. /* fix for gcc4 visibility patch */
  75. #ifndef PHP_WIN32
  76. # undef AP_MODULE_DECLARE_DATA
  77. # define AP_MODULE_DECLARE_DATA PHPAPI
  78. #endif
  79. #endif /* PHP_APACHE_H */