mirror of
https://github.com/php/php-src.git
synced 2026-04-10 09:33:06 +02:00
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 */
|