Increase maximum SCGI request to 16MB (#905)

This commit is contained in:
lps-rocks
2019-08-28 10:44:09 -05:00
committed by Jari Sundell
parent 7659cd0ec0
commit 14d7121185
+1 -1
View File
@@ -51,7 +51,7 @@ class SCgiTask : public torrent::Event {
public:
static const unsigned int default_buffer_size = 2047;
static const int max_header_size = 2000;
static const int max_content_size = (2 << 20);
static const int max_content_size = (2 << 23);
SCgiTask() { m_fileDesc = -1; }