# HG changeset patch # User jbe # Date 1427223153 -3600 # Node ID d8baa0f3073195a896b87ced27e4eb28a4460e4f # Parent 209d378c0a3ba568efce66f7d9dba5737cd4f831 Updated documentation of listen function diff -r 209d378c0a3b -r d8baa0f30731 framework/bin/mcp.lua --- a/framework/bin/mcp.lua Tue Mar 24 18:26:27 2015 +0100 +++ b/framework/bin/mcp.lua Tue Mar 24 19:52:33 2015 +0100 @@ -306,11 +306,12 @@ min_requests_per_fork = min_requests_per_fork, -- minimum count of requests handled before fork is terminated max_requests_per_fork = max_requests_per_fork, -- maximum count of requests handled before fork is terminated http_options = { - static_headers = static_headers, -- string or table of static headers to be returned with every request - 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 - minimum_output_chunk_size = minimum_output_chunk_size -- chunk size for chunked-transfer-encoding + 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 + minimum_output_chunk_size = minimum_output_chunk_size -- chunk size for chunked-transfer-encoding } }