diff options
author | Michael Wallner <mike@php.net> | 2013-08-14 14:42:36 +0200 |
---|---|---|
committer | Michael Wallner <mike@php.net> | 2013-08-27 13:43:22 +0200 |
commit | bb1f9d3826c968ce0c099598ded6f646b3da6429 (patch) | |
tree | 22f88cf937d8909ef099797198b6ccb114cffa57 /main/SAPI.h | |
parent | a13c00cd14179971efd60e8acb450a615c2aff22 (diff) | |
download | php-git-bb1f9d3826c968ce0c099598ded6f646b3da6429.tar.gz |
slim post data
Diffstat (limited to 'main/SAPI.h')
-rw-r--r-- | main/SAPI.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/main/SAPI.h b/main/SAPI.h index 6fc60c8865..ed6b0494f4 100644 --- a/main/SAPI.h +++ b/main/SAPI.h @@ -32,8 +32,7 @@ #include <sys/stat.h> #define SAPI_OPTION_NO_CHDIR 1 - -#define SAPI_POST_BLOCK_SIZE 4000 +#define SAPI_POST_BLOCK_SIZE 0x4000 #ifdef PHP_WIN32 # ifdef SAPI_EXPORTS @@ -80,14 +79,14 @@ END_EXTERN_C() typedef struct { const char *request_method; char *query_string; - char *post_data, *raw_post_data; char *cookie_data; long content_length; - int64_t post_data_length, raw_post_data_length; char *path_translated; char *request_uri; + struct _php_stream *request_body; + const char *content_type; zend_bool headers_only; |