# HG changeset patch # User jbe # Date 1434761064 -7200 # Node ID 4dbf4374f24adaeaaaae78c22181295fa5eacc05 # Parent 6ad9f6113c52e577dd17194a632097c8dde85933 Updated documentation for new Moonbridge version diff -r 6ad9f6113c52 -r 4dbf4374f24a framework/bin/mcp.lua --- a/framework/bin/mcp.lua Fri May 22 01:44:31 2015 +0200 +++ b/framework/bin/mcp.lua Sat Jun 20 02:44:24 2015 +0200 @@ -316,8 +316,9 @@ static_headers = static_headers, -- string or table of static headers to be returned with every request request_header_size_limit = request_header_size_limit, -- maximum size of request headers sent by client request_body_size_limit = request_body_size_limit, -- maximum size of request body sent by client - request_header_timeout = request_header_timeout, -- time after which request headers must have been received and processed - timeout = timeout, -- time in which request body and response must be sent + request_idle_timeout = request_idle_timeout, -- maximum time until receiving the first byte of the request header + request_header_timeout = request_header_timeout, -- maximum time until receiving the remaining bytes of the request header + response_timeout = response_timeout, -- time in which request body and response must be sent maximum_input_chunk_size = maximum_input_chunk_size, -- tweaks behavior of request-body parser minimum_output_chunk_size = minimum_output_chunk_size -- chunk size for chunked-transfer-encoding }