diff options
author | Kim Alvefur <zash@zash.se> | 2020-06-23 15:39:31 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-06-23 15:39:31 +0200 |
commit | 5f5b5f09427a8de6ec3261c6850da5e63f579d70 (patch) | |
tree | de728e499fac0f565b91a9bfbcf88fb2ada00010 /net/http | |
parent | 54989d19aab814da0056ffbe083435487dcf28a7 (diff) | |
download | prosody-5f5b5f09427a8de6ec3261c6850da5e63f579d70.tar.gz prosody-5f5b5f09427a8de6ec3261c6850da5e63f579d70.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]`
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/server.lua | 2 |
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; |