lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
557 B
25 lines
557 B
#ifndef _LIGHTTPD_SETTINGS_H_ |
|
#define _LIGHTTPD_SETTINGS_H_ |
|
#include "first.h" |
|
|
|
/** |
|
* max size of a buffer which will just be reset |
|
* to ->used = 0 instead of really freeing the buffer |
|
* |
|
* 64kB (no real reason, just a guess) |
|
*/ |
|
#define BUFFER_MAX_REUSE_SIZE (4 * 1024) |
|
|
|
/* both should be way smaller than SSIZE_MAX :) */ |
|
#define MAX_READ_LIMIT (256*1024) |
|
#define MAX_WRITE_LIMIT (256*1024) |
|
|
|
/** |
|
* max size of the HTTP request header |
|
* |
|
* 32k should be enough for everything (just a guess) |
|
* |
|
*/ |
|
#define MAX_HTTP_REQUEST_HEADER (32 * 1024) |
|
|
|
#endif
|
|
|