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.

43 lines
794 B

  1. #ifdef WIN32
  2. #include <winsock2.h>
  3. #include <stddef.h>
  4. #endif
  5. #ifdef NETWARE
  6. #include <netinet/in.h>
  7. #endif
  8. #include "zend.h"
  9. #include "zend_stack.h"
  10. #include "ext/ereg/php_regex.h"
  11. #include "httpd.h"
  12. #include "http_config.h"
  13. #if MODULE_MAGIC_NUMBER > 19980712
  14. # include "ap_compat.h"
  15. #else
  16. # if MODULE_MAGIC_NUMBER > 19980324
  17. # include "compat.h"
  18. # endif
  19. #endif
  20. #include "http_core.h"
  21. #include "http_main.h"
  22. #include "http_protocol.h"
  23. #include "http_request.h"
  24. #include "http_log.h"
  25. #include "util_script.h"
  26. #include "php_variables.h"
  27. #include "php_main.h"
  28. #include "php_ini.h"
  29. #include "ext/standard/php_standard.h"
  30. #include "mod_php5.h"
  31. zval *php_apache_request_new(request_rec *r);
  32. int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRMLS_DC);