File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / sapi / apache_hooks / php_apache_http.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>