blob: 1bcba038ea58178fbe3488e72003667a2c019d67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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
void destroy_uploaded_files_hash(SLS_D);
#endif /* RFC1867_H */
|