diff --git a/modules/fstream/settings.py b/modules/fstream/settings.py index 7cc0bf1..12f802c 100644 --- a/modules/fstream/settings.py +++ b/modules/fstream/settings.py @@ -4,6 +4,8 @@ global bufferCost bufferCost = 1024 # Virtually add extra cost to each buffer piece to prevent clients from overloading the server by sending super small pieces. global maxBuffer maxBuffer = 20*1024*1024 # The maximum buffer size of a stream in bytes. Old buffers are discarded, clients that depend on them get disconnected. +global httpHeaderMaxSize +httpHeaderMaxSize = 16192 # Maximum size for faux incoming HTTP header global tokenTimeout tokenTimeout = 120.0 # How long it takes, in seconds, for a login token to time out. global tokenLength