zeev Sun May 30 13:53:12 2004 EDT
Modified files:
/php-src/sapi/apache_hooks php_apache.c
Log:
Fix prototypes
http://cvs.php.net/diff.php/php-src/sapi/apache_hooks/php_apache.c?r1=1.16&r2=1.17&ty=u
Index: php-src/sapi/apache_hooks/php_apache.c
diff -u php-src/sapi/apache_hooks/php_apache.c:1.16
php-src/sapi/apache_hooks/php_apache.c:1.17
--- php-src/sapi/apache_hooks/php_apache.c:1.16 Thu Jan 8 03:18:06 2004
+++ php-src/sapi/apache_hooks/php_apache.c Sun May 30 13:53:12 2004
@@ -17,7 +17,7 @@
| David Sklar <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: php_apache.c,v 1.16 2004/01/08 08:18:06 andi Exp $ */
+/* $Id: php_apache.c,v 1.17 2004/05/30 17:53:12 zeev Exp $ */
#include "php_apache_http.h"
@@ -273,7 +273,7 @@
/* {{{ access string slots of request rec
*/
-/* {{{ proto string $request->filename([string new_filename])
+/* {{{ proto string ApacheRequest::filename([string new_filename])
*/
PHP_FUNCTION(apache_request_filename)
{
@@ -281,7 +281,7 @@
}
/* }}} */
-/* {{{ proto string $request->uri([string new_uri])
+/* {{{ proto string ApacheRequest::uri([string new_uri])
*/
PHP_FUNCTION(apache_request_uri)
{
@@ -289,7 +289,7 @@
}
/* }}} */
-/* {{{ proto string $request->unparsed_uri([string new_unparsed_uri])
+/* {{{ proto string ApacheRequest::unparsed_uri([string new_unparsed_uri])
*/
PHP_FUNCTION(apache_request_unparsed_uri)
{
@@ -297,7 +297,7 @@
}
/* }}} */
-/* {{{ proto string $request->path_info([string new_path_info])
+/* {{{ proto string ApacheRequest::path_info([string new_path_info])
*/
PHP_FUNCTION(apache_request_path_info)
{
@@ -305,7 +305,7 @@
}
/* }}} */
-/* {{{ proto string $request->args([string new_args])
+/* {{{ proto string ApacheRequest::args([string new_args])
*/
PHP_FUNCTION(apache_request_args)
{
@@ -313,7 +313,7 @@
}
/* }}} */
-/* {{{ proto string $request->boundary()
+/* {{{ proto string ApacheRequest::boundary()
*/
PHP_FUNCTION(apache_request_boundary)
{
@@ -322,7 +322,7 @@
/* }}} */
-/* {{{ proto string $request->content_type([string new_type])
+/* {{{ proto string ApacheRequest::content_type([string new_type])
*/
PHP_FUNCTION(apache_request_content_type)
{
@@ -330,7 +330,7 @@
}
/* }}} */
-/* {{{ proto string $request->content_encoding([string new_encoding])
+/* {{{ proto string ApacheRequest::content_encoding([string new_encoding])
*/
PHP_FUNCTION(apache_request_content_encoding)
{
@@ -338,7 +338,7 @@
}
/* }}} */
-/* {{{ proto string $request->handler([string new_handler])
+/* {{{ proto string ApacheRequest::handler([string new_handler])
*/
PHP_FUNCTION(apache_request_handler)
{
@@ -346,7 +346,7 @@
}
/* }}} */
-/* {{{ proto string $request->the_request()
+/* {{{ proto string ApacheRequest::the_request()
*/
PHP_FUNCTION(apache_request_the_request)
{
@@ -354,7 +354,7 @@
}
/* }}} */
-/* {{{ proto string $request->protocol()
+/* {{{ proto string ApacheRequest::protocol()
*/
PHP_FUNCTION(apache_request_protocol)
{
@@ -362,7 +362,7 @@
}
/* }}} */
-/* {{{ proto string $request->hostname()
+/* {{{ proto string ApacheRequest::hostname()
*/
PHP_FUNCTION(apache_request_hostname)
{
@@ -370,7 +370,7 @@
}
/* }}} */
-/* {{{ proto string $request->status_line([string new_status_line])
+/* {{{ proto string ApacheRequest::status_line([string new_status_line])
*/
PHP_FUNCTION(apache_request_status_line)
{
@@ -378,7 +378,7 @@
}
/* }}} */
-/* {{{ proto string $request->method()
+/* {{{ proto string ApacheRequest::method()
*/
PHP_FUNCTION(apache_request_method)
{
@@ -391,7 +391,7 @@
/* {{{ access int slots of request_rec
*/
-/* {{{ proto int $request->proto_num()
+/* {{{ proto int ApacheRequest::proto_num()
*/
PHP_FUNCTION(apache_request_proto_num)
{
@@ -399,7 +399,7 @@
}
/* }}} */
-/* {{{ proto int $request->assbackwards()
+/* {{{ proto int ApacheRequest::assbackwards()
*/
PHP_FUNCTION(apache_request_assbackwards)
{
@@ -408,7 +408,7 @@
/* }}} */
-/* {{{ proto int $request->proxyreq([int new_proxyreq])
+/* {{{ proto int ApacheRequest::proxyreq([int new_proxyreq])
*/
PHP_FUNCTION(apache_request_proxyreq)
{
@@ -416,7 +416,7 @@
}
/* }}} */
-/* {{{ proto int $request->chunked()
+/* {{{ proto int ApacheRequest::chunked()
*/
PHP_FUNCTION(apache_request_chunked)
{
@@ -425,7 +425,7 @@
/* }}} */
-/* {{{ proto int $request->header_only()
+/* {{{ proto int ApacheRequest::header_only()
*/
PHP_FUNCTION(apache_request_header_only)
{
@@ -433,7 +433,7 @@
}
/* }}} */
-/* {{{ proto int $request->request_time()
+/* {{{ proto int ApacheRequest::request_time()
*/
PHP_FUNCTION(apache_request_request_time)
{
@@ -441,7 +441,7 @@
}
/* }}} */
-/* {{{ proto int $request->status([int new_status])
+/* {{{ proto int ApacheRequest::status([int new_status])
*/
PHP_FUNCTION(apache_request_status)
{
@@ -449,7 +449,7 @@
}
/* }}} */
-/* {{{ proto int $request->method_number([int method_number])
+/* {{{ proto int ApacheRequest::method_number([int method_number])
*/
PHP_FUNCTION(apache_request_method_number)
{
@@ -457,7 +457,7 @@
}
/* }}} */
-/* {{{ proto int $request->allowed([int allowed])
+/* {{{ proto int ApacheRequest::allowed([int allowed])
*/
PHP_FUNCTION(apache_request_allowed)
{
@@ -465,7 +465,7 @@
}
/* }}} */
-/* {{{ proto int $request->bytes_sent()
+/* {{{ proto int ApacheRequest::bytes_sent()
*/
PHP_FUNCTION(apache_request_bytes_sent)
{
@@ -473,7 +473,7 @@
}
/* }}} */
-/* {{{ proto int $request->mtime()
+/* {{{ proto int ApacheRequest::mtime()
*/
PHP_FUNCTION(apache_request_mtime)
{
@@ -481,7 +481,7 @@
}
/* }}} */
-/* {{{ proto int $request->content_length([int new_content_length])
+/* {{{ proto int ApacheRequest::content_length([int new_content_length])
*/
PHP_FUNCTION(apache_request_content_length)
{
@@ -508,7 +508,7 @@
}
/* }}} */
-/* {{{ proto int $request->remaining()
+/* {{{ proto int ApacheRequest::remaining()
*/
PHP_FUNCTION(apache_request_remaining)
{
@@ -516,7 +516,7 @@
}
/* }}} */
-/* {{{ proto int $request->no_cache()
+/* {{{ proto int ApacheRequest::no_cache()
*/
PHP_FUNCTION(apache_request_no_cache)
{
@@ -524,7 +524,7 @@
}
/* }}} */
-/* {{{ proto int $request->no_local_copy()
+/* {{{ proto int ApacheRequest::no_local_copy()
*/
PHP_FUNCTION(apache_request_no_local_copy)
{
@@ -532,7 +532,7 @@
}
/* }}} */
-/* {{{ proto int $request->read_body()
+/* {{{ proto int ApacheRequest::read_body()
*/
PHP_FUNCTION(apache_request_read_body)
{
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php