mirror of
https://github.com/php/php-src.git
synced 2024-12-03 14:54:40 +08:00
a6393de6f7
have in the future now obey to the variables_order directive, and there's a real way modular way to handle POST content. This is all untested, BEFORE_SAPI_POST_PATCH_17_FEB_2000 tagged before submission @- Made multipart/form-data content obey to the variables_order directive (Zeev)
14 lines
271 B
C
14 lines
271 B
C
#ifndef _RFC1867_H
|
|
#define _RFC1867_H
|
|
|
|
#include "SAPI.h"
|
|
|
|
#define MULTIPART_CONTENT_TYPE "multipart/form-data"
|
|
|
|
SAPI_POST_READER_FUNC(rfc1867_post_reader);
|
|
SAPI_POST_HANDLER_FUNC(rfc1867_post_handler);
|
|
|
|
#define FILE_UPLOAD_INPUT_BUFFER_SIZE 8192
|
|
|
|
#endif /* _RFC1867_H */
|