mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
bd36651336
commit
48c9a60d19
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue