aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-01-01 01:22:57 +0100
committerKim Alvefur <zash@zash.se>2020-01-01 01:22:57 +0100
commit7a17e5b8cad5c3cbb3737bb685bff079c1106778 (patch)
tree9ea5dc0dddbdf7fb7645a81a66289cd2f7dac439
parented21c8338eb07ee94dd95b26f9cbc9df40fe68e3 (diff)
downloadprosody-7a17e5b8cad5c3cbb3737bb685bff079c1106778.tar.gz
prosody-7a17e5b8cad5c3cbb3737bb685bff079c1106778.zip
net.http.parser: Add TODO related to #726
-rw-r--r--net/http/parser.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua
index 62c09aef..b328bdfe 100644
--- a/net/http/parser.lua
+++ b/net/http/parser.lua
@@ -93,6 +93,7 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb)
chunked = have_body and headers["transfer-encoding"] == "chunked";
len = tonumber(headers["content-length"]); -- TODO check for invalid len
if len and len > bodylimit then error = true; return error_cb("content-length-limit-exceeded"); end
+ -- TODO ask a callback whether to proceed in case of large requests or Expect: 100-continue
if client then
-- FIXME handle '100 Continue' response (by skipping it)
if not have_body then len = 0; end