moonbridge

changeset 37:c89d8d442987

Fixed comment on internal variable "input_state"
author jbe
date Mon Mar 02 00:54:58 2015 +0100 (2015-03-02)
parents b841dc424baf
children 7b3707ba603e
files moonbridge_http.lua
line diff
     1.1 --- a/moonbridge_http.lua	Mon Mar 02 00:53:14 2015 +0100
     1.2 +++ b/moonbridge_http.lua	Mon Mar 02 00:54:58 2015 +0100
     1.3 @@ -205,10 +205,10 @@
     1.4        local headers_value_nil = {}          -- header values that are nil
     1.5        local request_body_content_length     -- Content-Length of request body
     1.6        local input_state = "pending"  -- one of:
     1.7 -      -- "pending"   (request body has not been processed yet)
     1.8 -      -- "deferred"  (request body processing is deferred)
     1.9 -      -- "reading"   (request body is currently being read)
    1.10 -      -- "finished"  (request body has been read)
    1.11 +      -- "pending"    (request body has not been processed yet)
    1.12 +      -- "deferred"   (request body processing is deferred)
    1.13 +      -- "inprogress" (request body is currently being read)
    1.14 +      -- "finished"   (request body has been read)
    1.15        local streamed_post_params         = {}  -- mapping from POST field name to stream function
    1.16        local streamed_post_param_patterns = {}  -- list of POST field pattern and stream function pairs
    1.17        -- object passed to handler (with methods, GET/POST params, etc.):

Impressum / About Us