diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-09 08:48:05 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-09 08:48:05 +0000 |
commit | bc415d5a8883bbe5b15c12e9a30f916c8010204a (patch) | |
tree | 216499649825b9005a59c0e3c5b5be67c2092871 /ext/apache/apache.c | |
parent | 91cf2e59c47a30f075fe1c69d17550b956df9865 (diff) | |
download | php-git-bc415d5a8883bbe5b15c12e9a30f916c8010204a.tar.gz |
* Finalizing the PHP version of SAPI. Support POST and cookies among other things.
* Fully implement ISAPI support - POST and cookies among other things.
* Almost completely rewrote phpinfo(). Allow modules to easily display their
information in phpinfo() without modifying phpinfo() itself (prototype for
the module info function was changed, thus the large amount of updated module
files).
* Initial extended SAPI support for Apache, completely untested.
* CGI now uses SAPI fully as well.
Diffstat (limited to 'ext/apache/apache.c')
-rw-r--r-- | ext/apache/apache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/apache/apache.c b/ext/apache/apache.c index c5085f749e..d3a390eba6 100644 --- a/ext/apache/apache.c +++ b/ext/apache/apache.c @@ -54,7 +54,7 @@ extern module *top_module; void php3_virtual(INTERNAL_FUNCTION_PARAMETERS); void php3_getallheaders(INTERNAL_FUNCTION_PARAMETERS); void php3_apachelog(INTERNAL_FUNCTION_PARAMETERS); -void php3_info_apache(void); +void php3_info_apache(ZEND_MODULE_INFO_FUNC_ARGS); void php3_apache_note(INTERNAL_FUNCTION_PARAMETERS); void php3_apache_lookup_uri(INTERNAL_FUNCTION_PARAMETERS); @@ -154,7 +154,7 @@ void php3_apache_note(INTERNAL_FUNCTION_PARAMETERS) } /* }}} */ -void php3_info_apache(void) { +void php3_info_apache(ZEND_MODULE_INFO_FUNC_ARGS) { module *modp = NULL; #if !defined(WIN32) && !defined(WINNT) char name[64]; |