php-src/main/php_content_types.c

31 lines
847 B
C
Raw Normal View History

1999-09-16 22:15:43 +00:00
#include "php.h"
#include "SAPI.h"
#include "rfc1867.h"
1999-12-05 16:43:32 +00:00
#include "php_content_types.h"
static sapi_post_entry php_post_entries[] = {
{ DEFAULT_POST_CONTENT_TYPE, sizeof(DEFAULT_POST_CONTENT_TYPE)-1, sapi_read_standard_form_data, php_std_post_handler },
{ MULTIPART_CONTENT_TYPE, sizeof(MULTIPART_CONTENT_TYPE)-1, sapi_read_standard_form_data, rfc1867_post_handler },
1999-09-16 22:15:43 +00:00
{ NULL, 0, NULL }
};
SAPI_POST_READER_FUNC(php_default_post_reader)
{
char *data;
ELS_FETCH();
sapi_read_standard_form_data(SLS_C);
data = estrndup(SG(request_info).post_data,SG(request_info).post_data_length);
SET_VAR_STRINGL("HTTP_RAW_POST_DATA", data, SG(request_info).post_data_length);
1999-09-16 22:15:43 +00:00
}
int php_startup_sapi_content_types(void)
1999-09-16 22:15:43 +00:00
{
sapi_register_post_entries(php_post_entries);
sapi_register_default_post_reader(php_default_post_reader);
1999-09-16 22:15:43 +00:00
return SUCCESS;
}