aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-06-23 15:39:31 +0200
committerKim Alvefur <zash@zash.se>2020-06-23 15:39:31 +0200
commit90f2c8519c76e3c7fd6fc743c77516087406239f (patch)
treede728e499fac0f565b91a9bfbcf88fb2ada00010
parentf700fbd8f7efe68146c213a6e655bd7f336b5a06 (diff)
downloadprosody-90f2c8519c76e3c7fd6fc743c77516087406239f.tar.gz
prosody-90f2c8519c76e3c7fd6fc743c77516087406239f.zip
net.http.server: Strip port from Host header in IPv6 friendly way (fix #1302)
E.g. given `[::1]:5280` it would previously result in only `[` instead of the correct `[::1]`
-rw-r--r--net/http/server.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index 9b63d516..d0bd3294 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -207,7 +207,7 @@ function handle_request(conn, request, finish_cb)
};
conn._http_open_response = response;
- local host = (request.headers.host or ""):match("[^:]+");
+ local host = (request.headers.host or ""):gsub(":%d+$","");
-- Some sanity checking
local err_code, err;