diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2002-10-21 16:41:06 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2002-10-21 16:41:06 +0000 |
commit | 8b7e9d77743ae006541a81bf4202e1c5d5311a60 (patch) | |
tree | 01ef9abc64f3bd26ecba541976d47e4a8b0ba331 /main/php_globals.h | |
parent | b67b00efcdd8bd6feed6d861bdc2bd7ece0f9761 (diff) | |
download | php-git-8b7e9d77743ae006541a81bf4202e1c5d5311a60.tar.gz |
some changes to how request input data (Content-Lenght >0) is handled
- webdav-specific stuff removed (should be handled using httpd.conf
LIMIT or equivalents)
- always_populate_raw_post_data now working on any method, not just
POST (and webdav methods with allow_webdav_methods), when
Content-Length is greater zero
- raw input data is also available using php://input stream,
this way one doesn't have to care about memory_limit
- input data is now always consumed (although maybe ignored,
this fixes we had withproblems with keep-alive connections
@ raw POST data is now available as php://input stream (hartmut)
Diffstat (limited to 'main/php_globals.h')
-rw-r--r-- | main/php_globals.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index b24b1df8a7..bc34330a92 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -140,7 +140,6 @@ struct _php_core_globals { zend_bool always_populate_raw_post_data; - zend_bool allow_webdav_methods; }; |