# HG changeset patch # User jbe # Date 1425254098 -3600 # Node ID c89d8d4429878e8a16a1d0c8b2a7f80bdfba8644 # Parent b841dc424baf3eb242534c0cbc2001432aad2763 Fixed comment on internal variable "input_state" diff -r b841dc424baf -r c89d8d442987 moonbridge_http.lua --- a/moonbridge_http.lua Mon Mar 02 00:53:14 2015 +0100 +++ b/moonbridge_http.lua Mon Mar 02 00:54:58 2015 +0100 @@ -205,10 +205,10 @@ local headers_value_nil = {} -- header values that are nil local request_body_content_length -- Content-Length of request body local input_state = "pending" -- one of: - -- "pending" (request body has not been processed yet) - -- "deferred" (request body processing is deferred) - -- "reading" (request body is currently being read) - -- "finished" (request body has been read) + -- "pending" (request body has not been processed yet) + -- "deferred" (request body processing is deferred) + -- "inprogress" (request body is currently being read) + -- "finished" (request body has been read) local streamed_post_params = {} -- mapping from POST field name to stream function local streamed_post_param_patterns = {} -- list of POST field pattern and stream function pairs -- object passed to handler (with methods, GET/POST params, etc.):