mirror of
https://github.com/php/php-src.git
synced 2024-11-26 11:23:47 +08:00
16017f6d78
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
14 lines
268 B
C
14 lines
268 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 */
|