diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-25 22:28:24 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-25 22:28:24 +0000 |
commit | cf58b7ef1615d2456fc2e3aa9319d8aae11f880f (patch) | |
tree | 921299e2eabdc7f9c3650fbdc9ec86b154856081 /main/rfc1867.h | |
parent | 6155d91e7a508a067536ff5124b08eca87209e46 (diff) | |
download | php-git-cf58b7ef1615d2456fc2e3aa9319d8aae11f880f.tar.gz |
Add container for file-upload. It's not quite implemented yet.
Diffstat (limited to 'main/rfc1867.h')
-rw-r--r-- | main/rfc1867.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/main/rfc1867.h b/main/rfc1867.h new file mode 100644 index 0000000000..77e3254084 --- /dev/null +++ b/main/rfc1867.h @@ -0,0 +1,12 @@ +#ifndef _RFC1867_H +#define _RFC1867_H + +#include "SAPI.h" + +#define MULTIPART_CONTENT_TYPE "multipart/form-data" + +SAPI_POST_READER_FUNC(rfc1867_post_reader); + +#define FILE_UPLOAD_INPUT_BUFFER_SIZE 8192 + +#endif /* _RFC1867_H */
\ No newline at end of file |