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]`
This commit is contained in:
Kim Alvefur 2020-06-23 15:39:31 +02:00
parent bd36651336
commit 48c9a60d19

View file

@ -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;