aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-06-23 15:43:57 +0200
committerKim Alvefur <zash@zash.se>2020-06-23 15:43:57 +0200
commit76f3ab72a40e3bed828e0ec2ad11d656d1e068fb (patch)
treed8ec7986d7608e4eb90407cf888b84a3dcc5b762
parent90f2c8519c76e3c7fd6fc743c77516087406239f (diff)
downloadprosody-76f3ab72a40e3bed828e0ec2ad11d656d1e068fb.tar.gz
prosody-76f3ab72a40e3bed828e0ec2ad11d656d1e068fb.zip
net.http.server: Fix reporting of missing Host header
The "Missing or invalid 'Host' header" case was dead code previously because `host` was always at least an empty string.
-rw-r--r--net/http/server.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index d0bd3294..18704962 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -207,7 +207,8 @@ function handle_request(conn, request, finish_cb)
};
conn._http_open_response = response;
- local host = (request.headers.host or ""):gsub(":%d+$","");
+ local host = request.headers.host;
+ if host then host = host:gsub(":%d+$",""); end
-- Some sanity checking
local err_code, err;