php-src/main/php_content_types.c
Zeev Suraski 98d95dd88e - Added support for unknown POST content types (Zeev)
- Introduce the convert_to_*_ex() API in strlen()
1999-09-16 23:18:15 +00:00

26 lines
632 B
C

#include "php.h"
#include "SAPI.h"
#include "rfc1867.h"
static sapi_post_content_type_reader php_post_content_types[] = {
{ MULTIPART_CONTENT_TYPE, sizeof(MULTIPART_CONTENT_TYPE)-1, rfc1867_post_reader },
{ NULL, 0, NULL }
};
SAPI_POST_READER_FUNC(php_default_post_reader)
{
ELS_FETCH();
sapi_read_standard_form_data(content_type_dup SLS_CC);
SET_VAR_STRINGL("HTTP_RAW_POST_DATA", SG(request_info).post_data, SG(request_info).post_data_length);
}
int php_startup_SAPI_content_types()
{
sapi_register_post_readers(php_post_content_types);
sapi_register_default_post_reader(php_default_post_reader);
return SUCCESS;
}