summaryrefslogtreecommitdiff
path: root/sapi/apache2handler/php_apache.h
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/apache2handler/php_apache.h')
-rw-r--r--sapi/apache2handler/php_apache.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/sapi/apache2handler/php_apache.h b/sapi/apache2handler/php_apache.h
index 70c0ccb091..edd76e6fa3 100644
--- a/sapi/apache2handler/php_apache.h
+++ b/sapi/apache2handler/php_apache.h
@@ -35,21 +35,13 @@ extern char *apache2_php_ini_path_override;
typedef struct php_struct {
int state;
request_rec *r;
- conn_rec *c;
-
- apr_bucket_brigade *bb;
- /* Length of post_data buffer */
- int post_len;
- /* Index for reading from buffer */
- int post_idx;
- /* stat structure of the current file */
+ apr_bucket_brigade *brigade;
+ /* stat structure of the current file */
#if defined(NETWARE) && defined(CLIB_STAT_PATCH)
struct stat_libc finfo;
#else
struct stat finfo;
#endif
- /* Buffer for request body filter */
- char *post_data;
/* Whether or not we've processed PHP in the output filters yet. */
int request_processed;
} php_struct;