blob: 77e32540844c03ddfd4b948eeaa5055545eebbc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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 */
|