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
commit28aad07a07e730f5f90c032649b9581c67cde4bf (patch)
treed8ec7986d7608e4eb90407cf888b84a3dcc5b762
parent5f5b5f09427a8de6ec3261c6850da5e63f579d70 (diff)
downloadprosody-28aad07a07e730f5f90c032649b9581c67cde4bf.tar.gz
prosody-28aad07a07e730f5f90c032649b9581c67cde4bf.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;